Skip to content

Commit

Permalink
comment out console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
koolamusic committed Jun 16, 2021
1 parent a2f7ee0 commit 3b5686c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/pages/nfts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function Page(props: TPageProps): JSX.Element {
})
}, [])

console.log(assets, 'profile assets')
// console.log(assets, 'profile assets')

if (loading) {
return <Loader />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/profile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Page(props: TPageProps): JSX.Element {
'main address': user.ethAddress,
}
setProfile(profile)
console.log(user)
// console.log(user)
}, [props.user])

const handleLogout = async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/tokens/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function Page(props: TPageProps): JSX.Element {
})
}, [])

console.log(assets, 'profile assets')
// console.log(assets, 'profile assets')

if (loading) {
return <Loader />
Expand Down
2 changes: 1 addition & 1 deletion src/pages/transactions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default function Page(props: TPageProps): JSX.Element {
})
}, [])

console.log(assets, 'profile assets')
// console.log(assets, 'profile assets')

if (loading) {
return <Loader />
Expand Down
4 changes: 2 additions & 2 deletions src/utils/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const getProfile = async (ctx: NextPageContext) => {
// console.log(userProfile, "The user cookie")
return userProfile as UserAccountDict
} catch (error) {
console.log(error)
// console.log(error)
return null
}
}
Expand All @@ -72,7 +72,7 @@ export const isAuthenticated = async (ctx: NextPageContext) => {
/* Return truthy */
return true
} catch (error) {
console.log(error)
// console.log(error)
return false
}
}
Expand Down

1 comment on commit 3b5686c

@vercel
Copy link

@vercel vercel bot commented on 3b5686c Jun 16, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.