Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes
Browse files Browse the repository at this point in the history
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
@@ -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 [
@@ -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.