diff --git a/app/types/app-state.js b/app/types/app-state.js index 445bc75..684a66c 100644 --- a/app/types/app-state.js +++ b/app/types/app-state.js @@ -1,7 +1,7 @@ // @flow -import type { TodoType } from './todo'; +import type { State as WalletSummaryState } from '../redux/modules/wallet'; export type AppState = { - todos: Array, + walletSummary: WalletSummaryState, };