Remove console log

This commit is contained in:
Austin Chen 2022-09-21 23:10:22 -04:00
parent e9ab234d61
commit 9ff2b62740

View File

@ -99,8 +99,6 @@ const useIsTwitch = (user: User | null | undefined) => {
const isTwitch = router.pathname === '/twitch'
useEffect(() => {
console.log('twich?', isTwitch)
if (isTwitch && user?.shouldShowWelcome) {
updateUser(user.id, { ['shouldShowWelcome']: false })
}