Skip to content

Commit

Permalink
remove unnecessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelSiidorow committed Jan 25, 2024
1 parent fb18a5c commit ea49e14
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions web/app/[locale]/terms/page.tsx
Original file line number Diff line number Diff line change
@@ -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<{
Expand Down Expand Up @@ -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 (
<div className="container max-w-3xl bg-secondary-50 dark:bg-secondary-800 mx-auto rounded shadow-md p-8">
Expand Down

0 comments on commit ea49e14

Please sign in to comment.