From 03af28f44afd0567c8e9100c2006dadf0b6d249a Mon Sep 17 00:00:00 2001 From: mayur-rawte Date: Fri, 3 May 2019 19:09:20 +0530 Subject: [PATCH] Fixed reduxPersist error on app start --- src/app/shared/common/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/common/store.ts b/src/app/shared/common/store.ts index 6b18059..5d8f444 100644 --- a/src/app/shared/common/store.ts +++ b/src/app/shared/common/store.ts @@ -2,7 +2,7 @@ import { getApolloClient } from '../../graphql/client/apollo-client'; import { createStore, combineReducers, applyMiddleware, compose } from 'redux'; import { reducer as accounts } from '@accounts/client'; import { persistStore, autoRehydrate } from 'redux-persist'; -import immutableTransform from 'redux-persist-transform-immutable'; +import * as immutableTransform from 'redux-persist-transform-immutable'; const apolloClient = getApolloClient();