From e8dd1f8f8b25aa7714bb8c643b1ea7ec1ec982fb Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 25 Oct 2025 21:48:25 +0200 Subject: [PATCH] Add log --- web/pages/[username]/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/pages/[username]/index.tsx b/web/pages/[username]/index.tsx index 3f2e0894..56f04612 100644 --- a/web/pages/[username]/index.tsx +++ b/web/pages/[username]/index.tsx @@ -23,12 +23,12 @@ export const getStaticProps: GetStaticProps< UserPageProps, { username: string } > = async (props) => { - // console.debug('Starting getStaticProps in /[username]') + console.log('Starting getStaticProps in /[username]') const {username} = props.params! const user = await getUserForStaticProps(db, username) - // console.log(user) + console.log('getStaticProps', {user}) if (!user) { return {