Add error notice when bundle load fails (#38458)

This commit is contained in:
Echo 2026-03-27 17:21:58 +01:00 committed by GitHub
parent e303c89e4d
commit 6e103636f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 });
});
};