feat: use readonly links

This commit is contained in:
Ayo 2023-09-29 12:34:44 +02:00
parent 242b91ea4b
commit 72ffecc197

View file

@ -3,7 +3,7 @@ import Icon from "astro-iconify";
import type { Link } from "../constants/links";
export interface Props {
links: Array<Link>;
links: readonly Link[];
}
let { links } = Astro.props;