diff --git a/native/redux/state-types.js b/native/redux/state-types.js --- a/native/redux/state-types.js +++ b/native/redux/state-types.js @@ -51,7 +51,7 @@ 'keyserverStore', '_persist', 'commServicesAccessToken', -]; +] as const; // Before making changes here, make sure to consider how the added property // should be stored. Think about redux-persist or SQLite as storage, diff --git a/web/redux/redux-setup.js b/web/redux/redux-setup.js --- a/web/redux/redux-setup.js +++ b/web/redux/redux-setup.js @@ -101,7 +101,7 @@ '_persist', 'customServer', 'clientDBStateLoaded', -]; +] as const; // Before making changes here, make sure to consider how the added property // should be stored. Think about redux-persist or SQLite as storage,