Skip to content

Commit c5d5bf4

Browse files
authored
Merge pull request #74 from cosmology-tech/develop
debug multi render
2 parents 971f69a + 8dd2f5b commit c5d5bf4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

examples/cosmwasm/hooks/use-hack-cw20-balance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function useHackCw20Balance(contractAddress: string): {
2424
setCw20Client(new HackCw20QueryClient(cosmwasmClient, contractAddress));
2525
});
2626
}
27-
}, [address, contractAddress, getSigningCosmWasmClient, status]);
27+
}, [address, contractAddress, status]);
2828
const [cw20Bal, setCw20Bal] = useState<string | null>(null);
2929
useEffect(() => {
3030
if (cw20Client && address) {

examples/cosmwasm/pages/_app.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
5454
rest: ['https://api.malaga-420.cosmwasm.com'],
5555
},
5656
}}
57+
logLevel={'TRACE'}
5758
>
5859
<Component {...pageProps} />
5960
</ChainProvider>

0 commit comments

Comments
 (0)