Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable delegation for validators, groups and their signers #135

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
call refetch funcions for the enclosing refetch
  • Loading branch information
shazarre committed Jan 10, 2025
commit e6a7620eb5fb7e75ea7fc3388bbab98ae05b97e8
6 changes: 3 additions & 3 deletions src/features/account/hooks.ts
Original file line number Diff line number Diff line change
@@ -115,9 +115,9 @@ export function useAccountDetails(address?: Address, addressOrVoteSigner?: Addre
isAccountResult.isLoading || isValidatorResult.isLoading || isValidatorGroupResult.isLoading,
refetch: () =>
Promise.all([
isAccountResult.refetch,
isValidatorResult.refetch,
isValidatorGroupResult.refetch,
isAccountResult.refetch(),
isValidatorResult.refetch(),
isValidatorGroupResult.refetch(),
]),
};
}
Loading