Skip to content

Commit

Permalink
fix type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kumpmati committed Apr 17, 2024
1 parent 3eb547d commit 1e5fbc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/(app)/me/OverallStatisticsOverview.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import * as Card from '$lib/components/ui/card';
import { Skeleton } from '$lib/components/ui/skeleton';
import type { OverallLinkStatistics } from '$lib/server/database/handlers/linkVisit';
import type { OverallLinkStatistics } from '$lib/server/database/handlers/analytics';
import { IconStar, IconActivity } from '@tabler/icons-svelte';
export let stats: OverallLinkStatistics | null;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import * as Card from '$lib/components/ui/card';
import { Skeleton } from '$lib/components/ui/skeleton';
import type { PerLinkStatistics } from '$lib/server/database/handlers/linkVisit';
import type { PerLinkStatistics } from '$lib/server/database/handlers/analytics';
export let stats: PerLinkStatistics | null;
</script>
Expand Down

0 comments on commit 1e5fbc1

Please sign in to comment.