Skip to content

Commit

Permalink
refactor(namadillo): using account?.address as a dependency instead o…
Browse files Browse the repository at this point in the history
…f account only
  • Loading branch information
pedrorezende committed Sep 19, 2024
1 parent 9e02151 commit 7293b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/namadillo/src/hooks/useTransactionCallbacks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const useTransactionCallback = (): void => {
useTransactionEventListener("Withdraw.Success", onBalanceUpdate);
useTransactionEventListener("Redelegate.Success", onBalanceUpdate);
useTransactionEventListener("ClaimRewards.Success", onBalanceUpdate, [
account,
account?.address,
]);

const shouldUpdateProposal = useSetAtom(shouldUpdateProposalAtom);
Expand Down

0 comments on commit 7293b72

Please sign in to comment.