1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-09-30 04:12:03 +02:00

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(); const blob = items[i].getAsFile();
props.onFilePasted(blob); props.onFilePasted(blob);
props.onOpenDialogClick(); props.onOpenDialogClick();
console.log(`[MessageBar] Pasted image`, blob);
break; break;
} }
} }

View file

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