Skip to content

Commit

Permalink
Remove missing slice
Browse files Browse the repository at this point in the history
  • Loading branch information
havfo committed Jan 12, 2024
1 parent 1bf4721 commit 334c3d9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/store/store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import roomSlice from './slices/roomSlice';
import meSlice from './slices/meSlice';
import consumersSlice from './slices/consumersSlice';
import signalingSlice from './slices/signalingSlice';
import webrtcSlice from './slices/webrtcSlice';
import permissionsSlice from './slices/permissionsSlice';
import lobbyPeersSlice from './slices/lobbyPeersSlice';
import settingsSlice from './slices/settingsSlice';
Expand Down Expand Up @@ -113,7 +112,6 @@ const reducer = combineReducers({
settings: settingsSlice.reducer,
signaling: signalingSlice.reducer,
ui: uiSlice.reducer,
webrtc: webrtcSlice.reducer,
recording: recordingSlice.reducer,
});

Expand Down Expand Up @@ -155,4 +153,4 @@ export type AppThunk<ReturnType = void> = ThunkAction<
RootState,
MiddlewareOptions,
Action<string>
>;
>;

0 comments on commit 334c3d9

Please sign in to comment.