do not filter sharedPreferences from sdk prefs (#7418)
This commit is contained in:
parent
03f5358a8c
commit
064d8738dd
1 changed files with 1 additions and 2 deletions
|
@ -234,9 +234,8 @@ export function doPushSettingsToPrefs() {
|
|||
return (dispatch, getState) => {
|
||||
const state = getState();
|
||||
const {
|
||||
settings: { clientSettings },
|
||||
settings: { clientSettings, sharedPreferences },
|
||||
} = state;
|
||||
const sharedPreferences = Object.assign({}, state.sharedPreferences);
|
||||
const selectedClientSettings = getSubsetFromKeysArray(clientSettings, CLIENT_SYNC_KEYS);
|
||||
const newSharedPreferences = { ...sharedPreferences, ...selectedClientSettings };
|
||||
|
||||
|
|
Loading…
Reference in a new issue