diff --git a/web/src/components/Messaging.jsx b/web/src/components/Messaging.jsx index 13854eca..a53b99f1 100644 --- a/web/src/components/Messaging.jsx +++ b/web/src/components/Messaging.jsx @@ -74,7 +74,6 @@ const MessageBar = (props) => { const blob = items[i].getAsFile(); props.onFilePasted(blob); props.onOpenDialogClick(); - console.log(`[MessageBar] Pasted image`, blob); break; } } diff --git a/web/src/components/PublishDialog.jsx b/web/src/components/PublishDialog.jsx index 1b2fdd9f..b7994da8 100644 --- a/web/src/components/PublishDialog.jsx +++ b/web/src/components/PublishDialog.jsx @@ -238,7 +238,6 @@ const PublishDialog = (props) => { useEffect(() => { if (props.attachFile) { updateAttachFile(props.attachFile); - console.log(`[PublishDialog] Attach file changed`, props.attachFile); } }, [props.attachFile]);