Clean up old flipper rating system
Summary: Found some unused code from the rating prototype before switching to itsr. Deleting it. Reviewed By: cekkaewnumchai Differential Revision: D18298155 fbshipit-source-id: 3529db17494f4f5bf7d7841460203d1c3856299a
This commit is contained in:
committed by
Facebook Github Bot
parent
ed2343b3c6
commit
42a77094f4
@@ -59,7 +59,7 @@ export type Actions =
|
||||
| {type: 'INIT'};
|
||||
|
||||
export type State = {
|
||||
application: ApplicationState & PersistPartial;
|
||||
application: ApplicationState;
|
||||
connections: DevicesState & PersistPartial;
|
||||
pluginStates: PluginStatesState;
|
||||
notifications: NotificationsState & PersistPartial;
|
||||
@@ -81,14 +81,7 @@ const settingsStorage = new JsonFileStorage(
|
||||
);
|
||||
|
||||
export default combineReducers<State, Actions>({
|
||||
application: persistReducer<ApplicationState, Actions>(
|
||||
{
|
||||
key: 'application',
|
||||
storage,
|
||||
whitelist: ['flipperRating'],
|
||||
},
|
||||
application,
|
||||
),
|
||||
application,
|
||||
connections: persistReducer<DevicesState, Actions>(
|
||||
{
|
||||
key: 'connections',
|
||||
|
||||
Reference in New Issue
Block a user