This commit is contained in:
bmauger 2022-04-01 10:07:50 -04:00
parent 3ae1e6edac
commit 478f09bd88
2 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ import router from "@/router";
/*
If the user has visited the funnel before this method will determine the bets place to
drop them so they don't start at the beginning again. This method will return 'heritage' if
the user has an existing order and they come back in from the Safelite.com CTA.
the user has an existing order and they come back in from the Safelite.com CTA.
*/
export async function getPageToRouteExistingOrderTo(toRoute = {}, existingHeritageOrder = false) {
@ -43,8 +43,8 @@ export async function getPageToRouteExistingOrderTo(toRoute = {}, existingHerita
return 'vehicle-damage'
} else {
if (store.getters.vehicle.vin) {
return 'vehicle-damage';
//return "vin-lookup"; (uncomment)
//return 'vehicle-damage'; //(uncomment)
return "vin-lookup"; //This may be temporary
} else {
return 'vehicle-damage';
//return "estimate" (uncomment)
@ -69,4 +69,4 @@ export async function navigateToHeritageFunnel() {
src: "concept-funnel",
}
);
}
}

View file

@ -68,7 +68,7 @@ const routingTable = [
},
{
scenario: navigationScenarios.SELECTED_DAMAGE_WITH_PART_QUESTIONS,
destinationFmgPageValue: fmgPageValues.PART_QUESTIONS,
destinationFmgPageValue: fmgPageValues.VIN_LOOKUP,//This might be temporary
},
],
},