Merge pull request #2589 from Safelite/feature/CASH-341

CASH-341
This commit is contained in:
Johnny Shultz 2025-06-18 10:39:14 -04:00 committed by Scott Kiener
parent 9ab076cbdf
commit 76a181ae64

View file

@ -542,10 +542,11 @@ export default {
forwardButtonAction() { forwardButtonAction() {
this.updateSupportingItems(); this.updateSupportingItems();
if (this.waitListRequested) { if (this.displayWaitList) {
var gaLabel = store.getters.isMobileAppointment var gaLabel = "";
? "checked_mobile" const status = this.waitListRequested ? "checked" : "unchecked";
: "checked_inshop"; const type = store.getters.isMobileAppointment ? "mobile" : "inshop";
gaLabel = `${status}_${type}`;
const currentDate = new Date(); const currentDate = new Date();
const dateString = this.selectableDatesData.days[0].date; const dateString = this.selectableDatesData.days[0].date;