fix(extension): remove socket from panel store (#820)

This commit is contained in:
Nathan Bierema 2021-08-30 02:17:39 +00:00 committed by GitHub
parent bff8dd4924
commit e98c083e41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,6 @@ import reports from '@redux-devtools/app/lib/reducers/reports';
import section from '@redux-devtools/app/lib/reducers/section';
import theme from '@redux-devtools/app/lib/reducers/theme';
import connection from '@redux-devtools/app/lib/reducers/connection';
import socket from '@redux-devtools/app/lib/reducers/socket';
import { StoreState } from '@redux-devtools/app/lib/reducers';
import { StoreActionWithTogglePersist } from '../../stores/windowStore';
@ -19,7 +18,6 @@ const rootReducer: Reducer<StoreState, StoreActionWithTogglePersist> =
section,
theme,
connection,
socket,
});
export default rootReducer;