From f97c2f37eb904a02da3c4060bfc6d2db93579f49 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Tue, 13 Jan 2026 15:57:53 -0500 Subject: [PATCH] CASH-2148 CASH-2148 --- src/layouts/part-questions/part-questions.vue | 6 ++++++ src/store/index.js | 4 ---- 2 files changed, 6 insertions(+), 4 deletions(-) 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) {