From 8773d73ead25f1709253a944fc13dd354c602bc0 Mon Sep 17 00:00:00 2001 From: Thomas Nordquist Date: Wed, 10 Apr 2019 18:54:39 +0200 Subject: [PATCH] Don't save autoExpandLimit --- app/src/actions/Settings.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/actions/Settings.ts b/app/src/actions/Settings.ts index 97f18a3..3b56cf3 100644 --- a/app/src/actions/Settings.ts +++ b/app/src/actions/Settings.ts @@ -35,6 +35,7 @@ export const loadSettings = () => async (dispatch: Dispatch, getState: () = export const storeSettings = () => async (dispatch: Dispatch, getState: () => AppState) => { const settings = { ...getState().settings.toJS(), + autoExpandLimit: undefined, topicFilter: undefined, visible: undefined, }