Skip to content

Commit

Permalink
Fix useMerkledropProof query key
Browse files Browse the repository at this point in the history
  • Loading branch information
prodesert22 committed Oct 5, 2022
1 parent 669b6d7 commit 54dd97f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/state/airdrop/hooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function useMerkledropProof(airdropAddress: string) {
const chainId = useChainId()

return useQuery(
['MerkledropProof', account, chainId],
['MerkledropProof', account, chainId, airdropAddress],
async () => {
if (!account)
return {
Expand Down

0 comments on commit 54dd97f

Please sign in to comment.