Remove console logs

This commit is contained in:
Bill 2022-03-15 17:29:21 -04:00
parent 8aa44aa45a
commit 883ab696cb
2 changed files with 0 additions and 3 deletions

View File

@ -28,7 +28,6 @@ export const CfhChatlogView: FC<CfhChatlogViewProps> = props =>
if(!parser || parser.data.issueId !== issueId) return;
setChatlogData(parser.data);
console.log(parser.data)
}, [issueId]);
UseMessageEventHook(CfhChatlogEvent, onCfhChatlogEvent);

View File

@ -188,8 +188,6 @@ export const NotificationCenterMessageHandler: FC<{}> = props =>
{
const parser = event.getParser();
console.log(parser);
NotificationUtilities.showNotification(parser.type, parser.parameters);
}, []);