chore: remove unused console

This commit is contained in:
Tristan Yang
2022-08-31 22:13:35 +08:00
parent be7d547719
commit 65f8917657
31 changed files with 44 additions and 65 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ const messageSlice = createSlice({
},
addReplyingMessage(state, action: PayloadAction<{ key: string | number; mid: number }>) {
const { key, mid } = action.payload;
console.log("to ", key, mid);
// console.log("to ", key, mid);
state.replying[key] = mid;
},
removeReplyingMessage(state, action: PayloadAction<string | number>) {