updates to routes

This commit is contained in:
Katie Kroell 2023-07-26 15:47:59 -04:00
parent f44f81f54f
commit 187cf5243c

View file

@ -19,11 +19,13 @@
</h5> </h5>
<div <div
class="body-text text-center mt-2" class="body-text text-center mt-2"
v-html="explanatoryText"> v-html="explanatoryText"
ref="explanatoryText">
</div> </div>
<div <div
class="text-center mt-4 fw-bold text-black" class="text-center mt-4 fw-bold text-black"
v-html="secondaryText"> v-html="secondaryText"
ref="secondaryText">
</div> </div>
<div <div
v-if="verifiedDeductible" v-if="verifiedDeductible"
@ -354,11 +356,11 @@ export default {
if (this.selectedProvider === 'Safelite') { if (this.selectedProvider === 'Safelite') {
this.$router.navigate(this.navigationScenarios.CLICKED_FORWARD_WITH_SAFELITE, this.$router.navigate(this.navigationScenarios.CLICKED_FORWARD_WITH_SAFELITE,
this.$route); this.$route);
} else if (this.mainStore.issConfig.enableTPAFlow) { } else if (this.selectedProvider === 'Other' && this.mainStore.issConfig.enableTPAFlow) {
this.$router.navigate(this.navigationScenarios.CLICKED_FORWARD_WITH_THIRD_PARTY, this.$router.navigate(this.navigationScenarios.CLICKED_FORWARD_WITH_TPA_ENABLED,
this.$route); this.$route);
} else { } else {
this.$router.navigate(this.navigationScenarios.CLICKED_FORWARD_WITH_BAILOUT, this.$router.navigate(this.navigationScenarios.CLICKED_FORWARD_WITH_TPA_DISABLED,
this.$route); this.$route);
} }
} }