Remove console.logs

This commit is contained in:
Kurt Hutten
2020-12-12 21:58:52 +11:00
parent b17dbbbc3c
commit 7b861ae122
2 changed files with 0 additions and 2 deletions

View File

@@ -21,7 +21,6 @@ const PartProfile = ({
const { currentUser } = useAuth()
const canEdit = currentUser?.sub === userPart.id
const part = userPart?.Part
console.log(part)
const emotes = countEmotes(part?.Reaction)
const userEmotes = part?.userReactions.map(({ emote }) => emote)
useEffect(() => {

View File

@@ -91,7 +91,6 @@ const MainLayout = ({ children }) => {
useEffect(() => {
const [key, token] = hash.slice(1).split('=')
if (key === 'confirmation_token') {
console.log('confirming with', token)
client
.confirm(token, true)
.then(() => {