Skip to content

Commit

Permalink
fix: persisted state type
Browse files Browse the repository at this point in the history
  • Loading branch information
mastro993 committed Jan 16, 2024
1 parent 09e546a commit 6c72527
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions ts/features/walletV3/common/store/reducers/index.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
import { combineReducers } from "redux";
import { PersistPartial } from "redux-persist";
import walletAnalyticsReducer, {
WalletAnalyticsState
} from "../../../analytics/store/reducers";
import walletDetailsReducer, {
WalletDetailsState
} from "../../../details/store";
import walletOnboardingReducer, {
WalletOnboardingState
} from "../../../onboarding/store";
import walletPaymentReducer, {
WalletPaymentState
} from "../../../payment/store/reducers";
import walletDetailsReducer, {
WalletDetailsState
} from "../../../details/store";
import walletTransactionReducer, {
WalletTransactionState
} from "../../../transaction/store";
import walletAnalyticsReducer, {
WalletAnalyticsState
} from "../../../analytics/store/reducers";

export type WalletState = {
analytics: WalletAnalyticsState;
analytics: WalletAnalyticsState & PersistPartial;
onboarding: WalletOnboardingState;
details: WalletDetailsState;
payment: WalletPaymentState;
Expand Down

0 comments on commit 6c72527

Please sign in to comment.