From e54363e503afe6b1a4d57c657384ff098f05b264 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Fri, 3 Jan 2025 13:58:09 -0500 Subject: [PATCH] CASH-60 CASH-60 return to avoid race conditions. --- src/router/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/router/index.js b/src/router/index.js index 7f5fcbf80..833a359b7 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -198,6 +198,7 @@ const routes = [ if (to.query.fmgPage === fmgPageValues.PAYMENT) { await store.getters.applicationUser.saveSessionPromise; window.location = applicationConfig.PIA_CANCEL_URL; + return; } GoToFunnelStartOn404(next);