From a5eb8a3fa3e701cd54ce673f9f9bf81c83566dc4 Mon Sep 17 00:00:00 2001 From: wjrjerome Date: Fri, 31 Jan 2025 10:37:06 +1100 Subject: [PATCH] fix: balance state in wrong states order --- src/app/state/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/state/index.tsx b/src/app/state/index.tsx index d996aa2b7..71685ecf8 100644 --- a/src/app/state/index.tsx +++ b/src/app/state/index.tsx @@ -26,13 +26,14 @@ import { FinalityProviderState } from "./FinalityProviderState"; import { RewardsState } from "./RewardState"; import { StakingState } from "./StakingState"; +// The order of the states is important for the state provider const STATE_LIST = [ DelegationState, DelegationV2State, FinalityProviderState, + BalanceState, StakingState, RewardsState, - BalanceState, ]; export interface AppState {