Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
brandstetterm committed Jan 8, 2024
1 parent cda3d0b commit e1ef4f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/[lang]/legal-notice.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import getTranslatedContent from "@utils/directus.ts";
import "./Legal.scss";
const {lang} = Astro.params;
const content = await getTranslatedContent("Impressum", lang!);
const content = await getTranslatedContent("Legal_Notice", lang!);
export const getStaticPaths = (() => {
return [
Expand All @@ -16,5 +16,5 @@ export const getStaticPaths = (() => {
---

<LegalLayout>
<section set:html={content.impressum} />
<section set:html={content.legal_notice} />
</LegalLayout>

0 comments on commit e1ef4f3

Please sign in to comment.