diff --git a/src/components/Nav.astro b/src/components/Nav.astro index e0088f4..fb37c9c 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -3,7 +3,7 @@ import Icon from "astro-iconify"; import type { Link } from "../constants/links"; export interface Props { - links: readonly Link[]; + links: Link[]; } let { links } = Astro.props; @@ -16,6 +16,7 @@ if (Astro.url.pathname !== "/") { }, ].concat(links); } + ---