diff --git a/web/app/[locale]/terms/page.tsx b/web/app/[locale]/terms/page.tsx index 4158537..d1ff971 100644 --- a/web/app/[locale]/terms/page.tsx +++ b/web/app/[locale]/terms/page.tsx @@ -27,7 +27,9 @@ 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) const goBack = (e: React.MouseEvent) => { e.preventDefault(); router.back();