diff --git a/ui/redux/middleware/shared-state.js b/ui/redux/middleware/shared-state.js index fe4d3c3a0..5bac9231f 100644 --- a/ui/redux/middleware/shared-state.js +++ b/ui/redux/middleware/shared-state.js @@ -13,7 +13,6 @@ export const buildSharedStateMiddleware = ( ) => ({ getState, dispatch }: { getState: () => { user: any, settings: any }, dispatch: (any) => void }) => ( next: ({}) => void ) => (action: { type: string, data: any }) => { - // We don't care if sync is disabled here, we always want to backup preferences to the wallet if (!actions.includes(action.type) || typeof action === 'function') { return next(action);