diff --git a/src/components/BlogSideBar.astro b/src/components/BlogSideBar.astro index ccc7a5b..b0932f4 100644 --- a/src/components/BlogSideBar.astro +++ b/src/components/BlogSideBar.astro @@ -1,46 +1,40 @@ --- import { getTags } from "../helpers/getTags"; import TagItem from "./TagItem.astro"; -const tags = await getTags() +const tags = await getTags(); -const tagsElement = tags.map((tag) => ({label: tag, url: `/tags/${tag}`})) +const tagsElement = tags.map((tag) => ({ label: tag, url: `/tags/${tag}` })); --- +