diff --git a/src/components/WwwFrame/PromotionalBanner/GlobalPromotionalBannerContentful.vue b/src/components/WwwFrame/PromotionalBanner/GlobalPromotionalBannerContentful.vue index 6f9b38f3fa..c0fb28dd91 100644 --- a/src/components/WwwFrame/PromotionalBanner/GlobalPromotionalBannerContentful.vue +++ b/src/components/WwwFrame/PromotionalBanner/GlobalPromotionalBannerContentful.vue @@ -166,14 +166,17 @@ export default { fragment: experimentVersionFragment, }) ?? {}; - if (version === 'b' && this.$route.path !== '/checkout') { - this.enableDepositExperiment = true; + if (version) { this.$kvTrackEvent( 'promo', 'EXP-MP-72-Apr2024', version, ); } + + if (version === 'b' && this.$route.path !== '/checkout') { + this.enableDepositExperiment = true; + } } };