From 7b861ae122aa452ad7eb2e79758381e6741e1c6c Mon Sep 17 00:00:00 2001 From: Kurt Hutten Date: Sat, 12 Dec 2020 21:58:52 +1100 Subject: [PATCH] Remove console.logs --- web/src/components/PartProfile/PartProfile.js | 1 - web/src/layouts/MainLayout/MainLayout.js | 1 - 2 files changed, 2 deletions(-) diff --git a/web/src/components/PartProfile/PartProfile.js b/web/src/components/PartProfile/PartProfile.js index b6ef005..1283f22 100644 --- a/web/src/components/PartProfile/PartProfile.js +++ b/web/src/components/PartProfile/PartProfile.js @@ -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(() => { diff --git a/web/src/layouts/MainLayout/MainLayout.js b/web/src/layouts/MainLayout/MainLayout.js index e9e3cbe..226f27e 100644 --- a/web/src/layouts/MainLayout/MainLayout.js +++ b/web/src/layouts/MainLayout/MainLayout.js @@ -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(() => { -- 2.39.5