Skip to content

Commit

Permalink
refactor: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
SplitCode committed Nov 5, 2024
1 parent b6021ad commit 54a9b10
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion frontend/src/components/channels/Channels.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const Channels = () => {

const handleOpenModal = () => {
dispatch(openModal({ type: MODAL_TYPES.ADD }));
console.log('Modal type being dispatched:', MODAL_TYPES.ADD);
};

return (
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/components/channels/ChannelsItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const ChannelItem = ({ channelItem }) => {
id: channelItem.id,
name: channelItem.name,
}));
console.log('Modal type being dispatched:', MODAL_TYPES.REMOVE);
};

const handleRenameChannel = () => {
Expand All @@ -33,7 +32,6 @@ const ChannelItem = ({ channelItem }) => {
id: channelItem.id,
name: channelItem.name,
}));
console.log('Modal type being dispatched:', MODAL_TYPES.RENAME);
};

return (
Expand Down

0 comments on commit 54a9b10

Please sign in to comment.