diff --git a/web/pages/[username]/index.tsx b/web/pages/[username]/index.tsx index df89bc28..905ab664 100644 --- a/web/pages/[username]/index.tsx +++ b/web/pages/[username]/index.tsx @@ -24,7 +24,7 @@ export const getStaticProps: GetStaticProps< UserPageProps, { username: string } > = async (props) => { - console.log('Starting getStaticProps in /[username]') + // console.log('Starting getStaticProps in /[username]') const {username} = props.params! const user = await getUserForStaticProps(db, username) @@ -86,7 +86,7 @@ type ActiveUserPageProps = { } export default function UserPage(props: UserPageProps) { - console.log('Starting UserPage in /[username]') + // console.log('Starting UserPage in /[username]') if (!props.user) { return
This account has been deleted
} @@ -99,7 +99,7 @@ export default function UserPage(props: UserPageProps) { } function UserPageInner(props: ActiveUserPageProps) { - console.log('Starting UserPageInner in /[username]') + // console.log('Starting UserPageInner in /[username]') const {user, username} = props const router = useRouter() const {query} = router