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 {