Sabutobi commented on issue #28259:
URL: https://github.com/apache/superset/issues/28259#issuecomment-2102575075
Hey y'all.
I know that's not the solution,but:
```
const origin = console.error;
console.error = error => {
if (/Loading chunk [\d]+ failed/.test(error.message)) {
alert(
'A new version released. Need to relaod the page to apply
changes.',
);
window.location.reload();
} else {
origin(error);
}
};
```
I've added this code snippet into the
`superset-frontend/src/setup/setupApp.ts file` additionally and to have this

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]