From 0983bcf8e11547cd573a8af79e9552ea7fc19c2a Mon Sep 17 00:00:00 2001 From: Sat Naing Date: Sun, 25 Sep 2022 19:10:17 +0630 Subject: [PATCH] Remove slugifying tag names --- src/components/Tag.astro | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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); ---