CSR-2374
Unverified claim should go to heritage on back button from service location page.
This commit is contained in:
parent
a0796a595b
commit
58e13ed503
1 changed files with 5 additions and 1 deletions
|
|
@ -515,7 +515,11 @@ export default {
|
|||
},
|
||||
backButtonAction() {
|
||||
const payment = store.getters.order.payment;
|
||||
if (payment?.isInsurance && payment?.insuranceCoverage?.isVerified) {
|
||||
if (
|
||||
payment?.isInsurance &&
|
||||
(payment?.insuranceCoverage?.isVerified ||
|
||||
store.getters.order.referralNumber.length === 6)
|
||||
) {
|
||||
navigateToHeritageFunnel({ shouldSaveSession: false });
|
||||
} else {
|
||||
this.$router.navigateWithoutSaving(
|
||||
|
|
|
|||
Loading…
Reference in a new issue