Merge branch 'release/2025.08.21' into BRM-fix-shadow-on-email-confirmation

This commit is contained in:
bmauger 2025-08-12 10:05:02 -04:00 committed by GitHub
commit 7b4d265caa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 11 deletions

View file

@ -1555,6 +1555,7 @@ export default {
}
},
updateTimeSlot(timeSlotObj) {
if (this.preSelectedDate && !timeSlotObj?.timeSlot?.date) return;
this.selectedTimeSlotInfo = timeSlotObj;
if (
this.appointmentType !== AppointmentTypeStrings.MOBILE &&
@ -1795,7 +1796,7 @@ export default {
font-size: 1.25rem;
}
:deep(.funnel-sub-header) {
:deep(.funnel-sub-header:not(.mb-5)) {
h5.dark-header {
font-weight: 600;
font-size: 1rem;

View file

@ -107,13 +107,14 @@ export default {
width: fit-content;
background-color: $blue;
border-radius: $border-radius-pill;
padding: 0.75rem 3rem;
a {
display: inline-block;
text-decoration: none;
color: $white;
font-weight: $font-weight-600;
line-height: 1.5rem;
padding: 0.75rem 3rem;
}
}
}

View file

@ -133,15 +133,6 @@ export default {
const currentPageName = getPageNameFromRouter();
const universes = store.getters.applicationUser.experiments;
let hasDynamoLogging = experimentMixin.methods.hasSettingEqualTo(
experimentSettings.DYNAMO_LOGGING,
"true",
universes
);
if (!hasDynamoLogging) {
return;
}
const variationNames = universes
.filter((item) => item.universeName === experimentUniverses.CONCEPT_FUNNEL)
.map((item) => item.variationName)