From c7e6f25e98ca97163bce6ec5422535310798cf7a Mon Sep 17 00:00:00 2001 From: George Lima Date: Mon, 10 Dec 2018 14:08:43 -0300 Subject: [PATCH] hotfix: update app-state type definitions --- app/types/app-state.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, };