diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-12-24 12:31:07 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2023-12-24 12:31:07 +0100 |
| commit | 3d65cb04707cf3af11885995fd1110a5971d8b00 (patch) | |
| tree | 7499ab3483d59138d9b421902ab4d282ea534b8f /src/lib/components | |
| parent | 6ccc6f60fc85e665c8a07a169efbe8d09c9d9e8e (diff) | |
Diffstat (limited to 'src/lib/components')
| -rw-r--r-- | src/lib/components/tag/tag.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/components/tag/tag.svelte b/src/lib/components/tag/tag.svelte index 1744094..71e8eff 100644 --- a/src/lib/components/tag/tag.svelte +++ b/src/lib/components/tag/tag.svelte @@ -1,7 +1,7 @@ <script lang="ts"> - import type { Tag, Topic } from '$lib/data/types'; + import type { Topic } from '$lib/data/types'; - export let tag: Tag; + export let tag: string; export let topics: Topic[]; import { _ } from 'svelte-i18n'; |