From c4ca73a9dce53f3b8fc0e6bb537146b6b68890ef Mon Sep 17 00:00:00 2001 From: CarlNation <32103961+CarlNation@users.noreply.github.com> Date: Thu, 7 Mar 2024 13:08:51 -0500 Subject: [PATCH] CSR-1754 CSR-1754 route to insurance page after quote --- src/layouts/quote/quote.vue | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/layouts/quote/quote.vue b/src/layouts/quote/quote.vue index 27093cfdf..fd85a396a 100644 --- a/src/layouts/quote/quote.vue +++ b/src/layouts/quote/quote.vue @@ -324,15 +324,10 @@ export default { const payment = this.$store.getters.payment; if (payment.isInsurance) { - navigateToHeritageFunnel({ - shouldSaveSession: true, - pageNameToLog: "quote", - loadingModal: this.$refs.loadingModal, - }); - // this.$router.navigateWithSaving( - // this.navigationScenarios.CLICKED_FORWARD_WITH_INSURANCE, - // this.$route - // ); + this.$router.navigateWithSaving( + this.navigationScenarios.CLICKED_FORWARD_WITH_INSURANCE, + this.$route + ); } else { this.$router.navigateWithSaving( this.navigationScenarios.CLICKED_FORWARD_WITH_CASH,