Return after successful error handling.

This commit is contained in:
Chloe Herd 2025-10-21 13:24:42 -04:00
parent 3fa55f6dea
commit 6fe34a4797

View file

@ -29,8 +29,10 @@ export async function handleHardError(errorPayload) {
if(isInStaticErrorExperiment) {
analyticsMixin?.methods?.pushPageErrorToDataLayer(errorPayload);
window.top.location = "/fmg/static/error";
return;
} else {
handleSoftError(errorPayload, true);
return;
}
} finally {
handleSoftError(errorPayload, true);