Skip to content

Commit bebd4f2

Browse files
committed
removes console logs
1 parent ff7f4b7 commit bebd4f2

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iotabots/components",
3-
"version": "0.0.46",
3+
"version": "0.0.47",
44
"private": false,
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/iotabots/Navigation/IdentityMenu.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export const IdentityMenu: React.FC<BoxProps> = (props) => {
1616
const { onClick } = props
1717

1818
const load = async (): Promise<boolean> => {
19-
console.log('Hello')
2019
const URL =
2120
'https://raw.githubusercontent.com/iotabots/save-the-bots/main/all.txt'
2221

@@ -40,8 +39,7 @@ export const IdentityMenu: React.FC<BoxProps> = (props) => {
4039
airdropAddresses.push(obj)
4140
}
4241

43-
console.log('airdropAddresses', airdropAddresses)
44-
console.log('account', account)
42+
console.log('NFT Components: IdentityMenu.tsx, account', account)
4543

4644
const iotabots: number[] = []
4745
airdropAddresses.forEach((obj) => {
@@ -50,13 +48,11 @@ export const IdentityMenu: React.FC<BoxProps> = (props) => {
5048
}
5149
})
5250
setBots(iotabots)
53-
console.log('iotabots', iotabots)
5451
return true
5552
}
5653

5754
React.useEffect(() => {
5855
load()
59-
console.log('bots', bots)
6056
// eslint-disable-next-line react-hooks/exhaustive-deps
6157
}, [account])
6258

@@ -65,7 +61,6 @@ export const IdentityMenu: React.FC<BoxProps> = (props) => {
6561
{account ? (
6662
<Box sx={{ cursor: 'pointer' }} onClick={onClick}>
6763
<ProfileImage id={bots[0]} />
68-
{/* Account{account} */}
6964
</Box>
7065
) : (
7166
<ConnectButton />

0 commit comments

Comments
 (0)