diff --git a/src/components/Tag.astro b/src/components/Tag.astro index 3212341..48c6379 100644 --- a/src/components/Tag.astro +++ b/src/components/Tag.astro @@ -1,14 +1,10 @@ --- -import slugify from "@utils/slugify"; - export interface Props { name: string; size?: "sm" | "lg"; } const { name, size = "sm" } = Astro.props; - -const slug = slugify(name); ---