Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyandreevsky committed Dec 12, 2024
1 parent 3c54f4c commit 04ecd17
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions packages/frontend/src/app/identity/[identifier]/Identity.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ function Identity ({ identifier }) {
if (!identity.error && !identity.data?.averageGasSpent) identity.data.averageGasSpent = 500000

if (!identity.data?.publicKeys && identity.data !== null) {
console.log('identity.data', identity.data)
console.log('identity.data.publicKeys', identity.data.publicKeys)

identity.data.publicKeys = [
{
contractBounds: {
Expand Down Expand Up @@ -96,8 +93,6 @@ function Identity ({ identifier }) {
]
}

// identity.data.publicKeys = []

const fetchData = () => {
Promise.all([
Api.getIdentity(identifier)
Expand Down Expand Up @@ -149,8 +144,6 @@ function Identity ({ identifier }) {
router.push(`${pathname}?${urlParameters.toString()}`, { scroll: false })
}, [activeTab, router, pathname, searchParams])

console.log('identity', identity)

return (
<PageDataContainer
className={'IdentityPage'}
Expand Down

0 comments on commit 04ecd17

Please sign in to comment.