diff --git a/src/layouts/part-questions/part-questions.vue b/src/layouts/part-questions/part-questions.vue index 5456d868f..c3fbee941 100644 --- a/src/layouts/part-questions/part-questions.vue +++ b/src/layouts/part-questions/part-questions.vue @@ -188,6 +188,12 @@ export default { } }); + this.dispatchStoreAction( + this.storeActions.SAVE_IS_OEM_GLASS_SELECTED, + false, + false + ); + // save to vuex store as order.damage.partQuestionAnswers (array) // used in GET_PARTS call following this one await this.dispatchStoreAction( diff --git a/src/store/index.js b/src/store/index.js index 15c69f483..8faf39f73 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -344,10 +344,6 @@ export const mutations = { state.order.isRecalAckOptIn = isRecalAckOptIn; }, updateIsOemGlassSelected(state, isOemGlassSelected) { - console.log( - "Mutation::::::::::::::::::::::::::::::::::::::: updateIsOemGlassSelected:", - isOemGlassSelected - ); state.order.damage.installOemGlass = isOemGlassSelected; }, updateIsMSRFeeApplicable(state, isMSRFeeApplicable) {