Merge pull request #2913 from Safelite/feature/CASH-1636

Prevent premature data clearing
This commit is contained in:
chloeherdsafelite 2025-10-22 15:29:17 -04:00 committed by GitHub
commit 0f1c657ff2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,7 +34,7 @@ export async function handleHardError(errorPayload) {
await handleSoftError(errorPayload, true);
return;
}
} finally {
} catch (exception) {
await handleSoftError(errorPayload, true);
}
}