Skip to content

Commit

Permalink
fix: track exp for all users
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bedon committed May 1, 2024
1 parent bf97c41 commit 4ab7eaf
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
};
</script>

0 comments on commit 4ab7eaf

Please sign in to comment.