Chore: remove old import

This commit is contained in:
Robin van der Linde 2025-08-17 14:43:08 +02:00
parent aecc36dfbe
commit 6967196ade

View file

@ -1,7 +1,6 @@
<script lang="ts">
import { UIEventSource } from "../../../Logic/UIEventSource"
import tag2link from "tag2link/index.json"
import { onMount } from "svelte"
export let tags: UIEventSource<Record<string, any>>
export let key: string
@ -34,8 +33,6 @@
const values: string[] =
typeof $tags[key] === "string" ? $tags[key].split(";").map((v: string) => v.trim()) : []
console.log(`TagLink for ${key} values: [${values.join(", ")}]`)
</script>
{#if url && values.length > 0}