From 383b5d3e227724890f328e3de00978bda352f70b Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 13 Apr 2026 18:00:24 -0400 Subject: [PATCH] fix: Catch failures in image upload --- shared/editor/plugins/UploadPlugin.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared/editor/plugins/UploadPlugin.ts b/shared/editor/plugins/UploadPlugin.ts index 87498bb1b0..4b1071b210 100644 --- a/shared/editor/plugins/UploadPlugin.ts +++ b/shared/editor/plugins/UploadPlugin.ts @@ -95,6 +95,9 @@ export class UploadPlugin extends Plugin { ], options ); + }) + .catch(() => { + // Silently handle fetch failures (e.g. CORS, network errors) }); }