Merge branch 'release/2023.03.23' into rlsmerge/2023.03.23-to-develop

This commit is contained in:
Scott Kiener 2023-03-23 15:48:06 -04:00
commit a4942bb2c1
2 changed files with 12 additions and 1 deletions

View file

@ -271,7 +271,7 @@ export default {
// call saveSession here - navigateWithSaving saves too late in the flow
await saveSession({});
return this.$router.navigateWithoutSaving(
return this.$router.navigateWithSaving(
this.navigationScenarios.CLICKED_FORWARD_WITH_NO_QUESTIONS,
this.$route
);

View file

@ -325,6 +325,17 @@ export default {
false
);
if (this.isWindshieldRepair) {
const supportingItems = await this.dispatchStoreAction(
storeActions.GET_SUPPORTING_ITEMS
);
this.dispatchStoreAction(
this.storeActions.SAVE_SUPPORTING_ITEMS,
supportingItems.data,
false
);
}
return this.navigateForward();
},