Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
macgeargear committed Nov 2, 2024
1 parent 7fa15e6 commit 2a54da2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/routes/stat/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import { faCircleArrowLeft } from '@fortawesome/free-solid-svg-icons';
import Fa from 'svelte-fa';
import { typography } from '../../styles/tailwind/typography';
import StatisticCard from '$lib/components/StatisticCard/StatisticCard.svelte';
import TabsRoot from '$lib/components/Tabs/TabsRoot.svelte';
import TabsList from '$lib/components/Tabs/TabsList.svelte';
import TabsTrigger from '$lib/components/Tabs/TabsTrigger.svelte';
Expand Down
2 changes: 1 addition & 1 deletion src/routes/stat/StatList.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{#if documents.length === 0}
<p>No documents available.</p>
{:else}
{#each documents as document, i}
{#each documents as document}
<StatisticCard
title={document.title}
createAt={document.created_at}
Expand Down

0 comments on commit 2a54da2

Please sign in to comment.