Updated save session loader modal behavior.

This commit is contained in:
Jeremy-Z 2026-07-06 12:06:07 -04:00
parent 6b3dcad2fc
commit b8cffbabd5

View file

@ -168,7 +168,8 @@ router.beforeEach(async (to, from) => {
try { try {
await saveSession({ shouldAwaitSaveSessionQueue: true, bailoutOnError: true }); await saveSession({ shouldAwaitSaveSessionQueue: true, bailoutOnError: true });
} }
finally { catch (error) {
// Only remove spinner on error. Successfull new page load will remove it by default.
showIssLoadingModal(false); showIssLoadingModal(false);
} }
} }