From bee2b75253923b1dc92c2556a4f3d53b13167218 Mon Sep 17 00:00:00 2001 From: Jeremy-Z Date: Tue, 30 Jun 2026 10:03:43 -0400 Subject: [PATCH] Removed non-prod logic behavior. Not sure why this was here. --- src/layouts/entry-page/entry-page.vue | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/layouts/entry-page/entry-page.vue b/src/layouts/entry-page/entry-page.vue index 783ec075..012ee066 100644 --- a/src/layouts/entry-page/entry-page.vue +++ b/src/layouts/entry-page/entry-page.vue @@ -81,21 +81,14 @@ export default { } this.mainStore.applicationUser.coverageAttempts = 0; - if ( - applicationConfig.CURRENT_ENVIRONMENT === 'Localhost' - || applicationConfig.CURRENT_ENVIRONMENT === 'Dev' - || applicationConfig.CURRENT_ENVIRONMENT === 'SysTest' - ) { - this.navigateForward(); - } else { - // Forced full location redirect here. We do not want the entry page as part of the router/flow/path history. - window.location = `/?issPage=${issPageValues.WELCOME_PAGE}`; - } + + // Forced full location redirect here. We do not want the entry page as part of the router/flow/path history. + window.location = `/?issPage=${issPageValues.WELCOME_PAGE}`; }, methods: { navigateForward() { - // Har har har I think we were supposed to skip saving session here. + // If we use navigateForward we need to skip saving session (creating referral). this.$router.navigate( this.navigationScenarios.MOVE_FORWARD_ENTRY_PAGE, this.$route,