From 6c14ac36d03a303163b239eb4e0bb0bd9fad5c38 Mon Sep 17 00:00:00 2001 From: Jeremy-Z Date: Wed, 1 Jul 2026 13:27:12 -0400 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- src/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/index.js b/src/router/index.js index 1b33bc25..a76da10a 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -161,7 +161,7 @@ if (callSaveSession) { // AfterEach does not support synchronous calls that block navigation. Which is why this is in the beforeEach method. // This only needs to be called once in a certain location, all other saveSession calls are async in afterEach (except the last one on order submission) // NOTE: This call should be creating the referral number. After this point in the site flow, referral number is critical for several pieces of logic and logging. - // Thereforce, we want to force a bailout here if it errors out. + // Therefore, we want to force a bailout here if it errors out. showIssLoadingModal(true); await saveSession({ shouldAwaitSaveSessionQueue: true, bailoutOnError: true }); showIssLoadingModal(false);