Remove debug logging

This commit is contained in:
Cao Mingjun 2023-11-25 05:22:02 +00:00 committed by GitHub
parent 94781c89f3
commit 00fe639a95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -74,7 +74,6 @@ const MessageBar = (props) => {
const blob = items[i].getAsFile();
props.onFilePasted(blob);
props.onOpenDialogClick();
console.log(`[MessageBar] Pasted image`, blob);
break;
}
}

View File

@ -238,7 +238,6 @@ const PublishDialog = (props) => {
useEffect(() => {
if (props.attachFile) {
updateAttachFile(props.attachFile);
console.log(`[PublishDialog] Attach file changed`, props.attachFile);
}
}, [props.attachFile]);