aboutsummaryrefslogtreecommitdiff
path: root/src/store
diff options
context:
space:
mode:
Diffstat (limited to 'src/store')
-rw-r--r--src/store/reducers/userReducer.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/store/reducers/userReducer.ts b/src/store/reducers/userReducer.ts
index 0b958cac..a8789c1d 100644
--- a/src/store/reducers/userReducer.ts
+++ b/src/store/reducers/userReducer.ts
@@ -75,9 +75,6 @@ const userDataSlice = createSlice({
state.avatar = '';
state.cover = '';
},
- setChatClientReady: (state, action) => {
- state.chatClientReady = action.payload.chatClientReady;
- },
},
});
@@ -93,6 +90,6 @@ export const {
setReplyPosted,
setSuggestedPeopleImage,
clearHeaderAndProfileImages,
- setChatClientReady,
+ // setChatClientReady,
} = userDataSlice.actions;
export const userDataReducer = userDataSlice.reducer;