Prevent premature data clearing

This commit is contained in:
Chloe Herd 2025-10-22 14:20:18 -04:00
parent 8d48f10562
commit 052305bba7

View file

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