Skip to content

Commit

Permalink
add debug log to terms page
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelSiidorow committed Jan 25, 2024
1 parent b3ad126 commit daf25f6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web/app/[locale]/terms/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<HTMLAnchorElement, MouseEvent>) => {
e.preventDefault();
router.back();
Expand Down

0 comments on commit daf25f6

Please sign in to comment.