fix: resolve linting errors and increase node heap size for CI stability
Some checks failed
🚀 Build & Deploy / 🔍 Prepare (push) Successful in 4s
🚀 Build & Deploy / 🧪 QA (push) Failing after 3m5s
🚀 Build & Deploy / 🏗️ Build (push) Failing after 13m16s
🚀 Build & Deploy / 🚀 Deploy (push) Has been skipped
🚀 Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
🚀 Build & Deploy / 🔔 Notify (push) Successful in 2s

This commit is contained in:
2026-05-04 13:56:33 +02:00
parent 77d87e7be9
commit 52480b4f55
8 changed files with 16 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ export default async function Page({ params }: PageProps) {
try {
const mdx = await import(`@/content/${locale}/avb.mdx`);
Content = mdx.default;
} catch (e) {
} catch {
notFound();
}

View File

@@ -13,7 +13,7 @@ export default async function Page({ params }: PageProps) {
try {
const mdx = await import(`@/content/${locale}/datenschutz.mdx`);
Content = mdx.default;
} catch (e) {
} catch {
notFound();
}

View File

@@ -13,7 +13,7 @@ export default async function Page({ params }: PageProps) {
try {
const mdx = await import(`@/content/${locale}/impressum.mdx`);
Content = mdx.default;
} catch (e) {
} catch {
notFound();
}

View File

@@ -1,6 +1,6 @@
import React from "react";
import { Metadata } from "next";
import { notFound } from "next/navigation";
import HomeContent from "@/components/HomeContent";
export const metadata: Metadata = {
@@ -21,7 +21,7 @@ export default async function Page({ params }: PageProps) {
try {
const mdx = await import(`@/content/${locale}/index.mdx`);
Content = mdx.default;
} catch (e) {
} catch {
// Fallback if MDX is not yet created for this locale
return <HomeContent />;
}

View File

@@ -20,7 +20,7 @@ export default async function Page({ params }: PageProps) {
try {
const mdx = await import(`@/content/${locale}/about.mdx`);
Content = mdx.default;
} catch (e) {
} catch {
notFound();
}