Skip to content

Commit b72b1bf

Browse files
timon-schellingKeavon
authored andcommitted
fix warning
1 parent 3b71d53 commit b72b1bf

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

frontend/src/state-providers/portfolio.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,11 @@ export function createPortfolioState(editor: Editor) {
5959
}
6060
});
6161
editor.subscriptions.subscribeJsMessage(TriggerOpen, async () => {
62-
console.error("Opening file");
6362
const suffix = "." + editor.handle.fileExtension();
6463
const data = await upload(suffix + "image/*", "data");
6564
editor.handle.openFile(data.filename, data.content);
6665
});
6766
editor.subscriptions.subscribeJsMessage(TriggerImport, async () => {
68-
console.error("Importing file");
6967
const data = await upload("image/*", "data");
7068
editor.handle.importFile(data.filename, data.content);
7169
});

0 commit comments

Comments
 (0)