Skip to content

Commit

Permalink
lint: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Mar 18, 2024
1 parent b72f1c0 commit 44511be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hooks/useEventBusForChat/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function reducer(state: ChatState, action: ActionToChat): ChatState {
const isThisChat =
action.payload?.id && action.payload.id === state.chat.id ? true : false;

console.log(action.type, action.payload, { isThisChat });
// console.log(action.type, action.payload, { isThisChat });

if (isThisChat && isSetDisableChat(action)) {
return {
Expand Down Expand Up @@ -806,7 +806,7 @@ export const useEventBusForChat = () => {
[dispatch, state.chat.id],
);

console.log(state);
// console.log(state);

return {
state,
Expand Down

0 comments on commit 44511be

Please sign in to comment.