diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-10-19 07:04:30 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-10-19 07:04:51 +0800 |
commit | ad6dc8e891059f00f2ddda1884bbc78c1e47ea24 (patch) | |
tree | 17e06dedb3dab0617586fb1ee585466266ad577d /packages/instant/src/redux/reducer.ts | |
parent | 44635f34f0df4da935ed4793566995873aac5055 (diff) | |
download | dexon-0x-contracts-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar.gz dexon-0x-contracts-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar.zst dexon-0x-contracts-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.zip |
fix: refactor ZeroExInstant state creation logic and fix bug
Diffstat (limited to 'packages/instant/src/redux/reducer.ts')
-rw-r--r-- | packages/instant/src/redux/reducer.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/packages/instant/src/redux/reducer.ts b/packages/instant/src/redux/reducer.ts index 657bd0e40..83422be45 100644 --- a/packages/instant/src/redux/reducer.ts +++ b/packages/instant/src/redux/reducer.ts @@ -36,7 +36,6 @@ export const INITIAL_STATE: State = { quoteState: AsyncProcessState.NONE, }; -// TODO: Figure out why there is an INITIAL_STATE key in the store... export const reducer = (state: State = INITIAL_STATE, action: Action): State => { switch (action.type) { case ActionTypes.UPDATE_ETH_USD_PRICE: |