From 6e103636f2214520812432635fd50a9633cec64c Mon Sep 17 00:00:00 2001 From: Echo Date: Fri, 27 Mar 2026 17:21:58 +0100 Subject: [PATCH] Add error notice when bundle load fails (#38458) --- app/javascript/mastodon/features/ui/components/bundle.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/javascript/mastodon/features/ui/components/bundle.jsx b/app/javascript/mastodon/features/ui/components/bundle.jsx index 57143f1571..90e775f907 100644 --- a/app/javascript/mastodon/features/ui/components/bundle.jsx +++ b/app/javascript/mastodon/features/ui/components/bundle.jsx @@ -69,6 +69,7 @@ class Bundle extends PureComponent { this.setState({ mod: mod.default }); }) .catch((error) => { + console.error('Bundle fetching error:', error); this.setState({ mod: null }); }); };