[Glitch] Add error notice when bundle load fails

Port 6e103636f2 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Echo
2026-03-27 17:21:58 +01:00
committed by Claire
parent 7ccada36db
commit e52a6f219f

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