From ea49e1443bd0802b957c4379ab63c4afed1e26c4 Mon Sep 17 00:00:00 2001 From: Mikael Siidorow Date: Thu, 25 Jan 2024 15:54:34 +0200 Subject: [PATCH] remove unnecessary logs --- web/app/[locale]/terms/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/app/[locale]/terms/page.tsx b/web/app/[locale]/terms/page.tsx index 5a514a2..109e6ac 100644 --- a/web/app/[locale]/terms/page.tsx +++ b/web/app/[locale]/terms/page.tsx @@ -1,8 +1,8 @@ import { fetchAPI } from "@/lib/api"; import { StrapiBaseType } from "@/utils/models"; import { getTranslation } from "@/utils/translationHelper"; -import { TermsContent } from "./Content"; import { BackLink } from "./BackLink"; +import { TermsContent } from "./Content"; export const dynamic = "force-dynamic"; type Fields = StrapiBaseType<{ @@ -30,9 +30,7 @@ type Props = { }; const Terms = async ({ params: { locale } }: Props) => { const content = await getContent(locale); - console.log("terms", content); const translation = await getTranslation(locale); - console.log("terms", translation); return (