aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/redux
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-19 07:04:30 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-19 07:04:51 +0800
commitad6dc8e891059f00f2ddda1884bbc78c1e47ea24 (patch)
tree17e06dedb3dab0617586fb1ee585466266ad577d /packages/instant/src/redux
parent44635f34f0df4da935ed4793566995873aac5055 (diff)
downloaddexon-sol-tools-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar
dexon-sol-tools-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar.gz
dexon-sol-tools-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar.bz2
dexon-sol-tools-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar.lz
dexon-sol-tools-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar.xz
dexon-sol-tools-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.tar.zst
dexon-sol-tools-ad6dc8e891059f00f2ddda1884bbc78c1e47ea24.zip
fix: refactor ZeroExInstant state creation logic and fix bug
Diffstat (limited to 'packages/instant/src/redux')
-rw-r--r--packages/instant/src/redux/reducer.ts1
-rw-r--r--packages/instant/src/redux/store.ts3
2 files changed, 1 insertions, 3 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:
diff --git a/packages/instant/src/redux/store.ts b/packages/instant/src/redux/store.ts
index 505234299..88d964bbc 100644
--- a/packages/instant/src/redux/store.ts
+++ b/packages/instant/src/redux/store.ts
@@ -9,10 +9,9 @@ export type Store = ReduxStore<State>;
export const store = {
create: (withState: Partial<State>): Store => {
const allInitialState = {
- INITIAL_STATE,
+ ...INITIAL_STATE,
...withState,
};
return createStore(reducer, allInitialState, devToolsEnhancer({}));
},
};
-