Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
Remove console.log's
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaumaus committed Aug 10, 2024
1 parent fb362d0 commit 8ba5937
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
4 changes: 1 addition & 3 deletions app/pages/Captcha/Settings/CaptchaSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,7 @@ const CaptchaSettings = ({
.then((res) => {
setAllProjectsNames(res)
})
.catch((e) => {
console.log(e)
})
.catch(console.error)
}

useEffect(() => {
Expand Down
4 changes: 1 addition & 3 deletions app/pages/Project/ProjectProtectedPassword/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ const ProjectProtectedPassword = ({
password: t('apiNotifications.incorrectPassword'),
})
})
.catch((err) => {
console.log(err)
})
.catch(console.error)
.finally(() => {
setIsLoading(false)
})
Expand Down
3 changes: 0 additions & 3 deletions app/pages/Project/View/ViewProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3814,9 +3814,6 @@ const ViewProject = ({
return item.name
}

console.log('projectViews:', projectViews)
console.log('_isEmpty(projectViews):', _isEmpty(projectViews))

if (item.id === 'no-views') {
return <span className='text-gray-600 dark:text-gray-200'>{item.name}</span>
}
Expand Down

0 comments on commit 8ba5937

Please sign in to comment.