Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprobst committed Jun 5, 2024
1 parent 4711fd9 commit 20f6191
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/kopisten-nav.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ import { createI18n } from "@/lib/i18n";
const { t } = await createI18n((Astro.currentLocale ?? defaultLocale) as Locale);
const links: Array<
{
| {
kind: "menu";
label: string;
children: Array<{ kind: "link"; href: string; label: string; reload?: boolean }>;
} | { kind: "link"; href: string; label: string; reload?: boolean }
}
| { kind: "link"; href: string; label: string; reload?: boolean }
> = [
{ kind: "link", href: "/forschung/kopisten", label: t("KopistenNav.links.about") },
{
Expand Down

0 comments on commit 20f6191

Please sign in to comment.