Skip to content

Commit

Permalink
Next: Fixed Parsing error: Cannot read properties of null (reading 'l…
Browse files Browse the repository at this point in the history
…eadingComments')
  • Loading branch information
niemyjski committed Dec 28, 2024
1 parent 5e02d24 commit 532f909
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
import type { IFilter } from '$comp/filters/filters.svelte';
import type { ViewProject } from '$features/projects/models';
import ErrorMessage from '$comp/ErrorMessage.svelte';
import ClickableProjectFilter from '$comp/filters/ClickableProjectFilter.svelte';
import DateTime from '$comp/formatters/DateTime.svelte';
import TimeAgo from '$comp/formatters/TimeAgo.svelte';
import { P } from '$comp/typography';
import { Skeleton } from '$comp/ui/skeleton';
import * as Table from '$comp/ui/table';
import * as Tabs from '$comp/ui/tabs';
Expand Down Expand Up @@ -182,7 +180,7 @@
<Skeleton class="mt-4 h-[30px] w-full rounded-full" />
<Table.Root class="mt-4">
<Table.Body>
{#each Array.from({ length: 5 })}
{#each Array.from({ length: 5 }) as index (index)}
<Table.Row class="group">
<Table.Head class="w-40 whitespace-nowrap"><Skeleton class="h-[24px] w-full rounded-full" /></Table.Head>
<Table.Cell class="w-4 pr-0"></Table.Cell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
</Card.Header>
<Card.Content class="space-y-4 pt-2">
<div class="grid grid-cols-2 gap-4 lg:grid-cols-4">
{#each Array(4)}
{#each Array.from({ length: 4 }) as index (index)}
<div class="flex flex-col items-center rounded-lg bg-muted p-2">
<Skeleton class="mb-1 size-6" />
<Skeleton class="mb-1 h-[28px] w-[60px]" />
Expand Down

0 comments on commit 532f909

Please sign in to comment.