diff --git a/src/pages/changelog/index.astro b/src/pages/changelog/index.astro index 0e276c6342eb1b7..39a2d3926549fe1 100644 --- a/src/pages/changelog/index.astro +++ b/src/pages/changelog/index.astro @@ -1,7 +1,8 @@ --- import StarlightPage from "@astrojs/starlight/components/StarlightPage.astro"; -import { Aside, Badge } from "~/components"; +import { Aside } from "~/components"; import { marked } from "marked"; +import { format } from "date-fns"; import { getChangelogs } from "~/util/changelogs"; const { products, productAreas, changelogs } = await getChangelogs(); @@ -27,7 +28,7 @@ const { products, productAreas, changelogs } = await getChangelogs();