Skip to content

Commit

Permalink
fix: balance state in wrong states order
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwbabylonlab committed Jan 30, 2025
1 parent df101cc commit a5eb8a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/state/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a5eb8a3

Please sign in to comment.