Skip to content

Commit

Permalink
style: Removing console logs and commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
rossneilson committed Nov 9, 2022
1 parent 949ca90 commit 1638b14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
16 changes: 0 additions & 16 deletions src/components/ProposalCard/ProposalCard.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,6 @@ jest.mock('Modules/Guilds/Hooks/useGuildConfig', () => ({

const mockBigNumber = BigNumber.from(100000000);

// jest.mock('wagmi', () => ({
// __esModule: true,
// useEnsResolver: () => ({
// data: {
// name: 'name.eth',
// address: '0x0000000000000000000000000000000000000000',
// contentHash: '0x0',
// },
// }),
// useNetwork: () => ({
// chain: {
// id: 1,
// },
// }),
// }));

jest.mock('hooks/Guilds/ens/useENSAvatar', () => ({
__esModule: true,
default: () => ({
Expand Down
3 changes: 1 addition & 2 deletions src/hooks/Guilds/tokens/useTokenList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ export const useTokenList = (
includeNativeToken: boolean = false
) => {
const { ipfsHash } = useENSContentHash('tokens.projectdavi.eth', 1);
console.log({ ipfsHash });
const tokenList = useIPFSFile<TokenList>(ipfsHash);
console.log({ tokenList });

const { chainName } = useTypedParams();
const config = useNetworkConfig(chainId);
const { chains } = useNetwork();
Expand Down

0 comments on commit 1638b14

Please sign in to comment.