Remove console.logs #155

Closed
Irev-Dev wants to merge 1 commits from kurt/remove-console-logs into main
2 changed files with 0 additions and 2 deletions

View File

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

View File

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