Skip to content

Commit

Permalink
Merge branch 'hotfix/2.28.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakeyzer committed Jul 12, 2024
2 parents 8144c7d + 8012c31 commit 99a373c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 19 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.28.0",
"version": "2.28.1",
"name": "shieldmaiden",
"description": "A Dungeons and Dragons Combat Tracker",
"productName": "Shieldmaiden",
Expand Down
7 changes: 1 addition & 6 deletions src/components/Tiers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,9 @@ export default {
return count === "infinite" || count > 1 ? `${type}s` : type;
},
selectTier(t) {
console.log(t.name);
this.$gtm.trackEvent({
event: "subscribe",
category: "Subscription",
action: "click",
label: "Started subscription process",
value: t.name,
noninteraction: false, // Optional
tier: t.name,
});
},
},
Expand Down
12 changes: 2 additions & 10 deletions src/views/Pages/SignUp.vue
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,7 @@ export default {
this.$gtm.trackEvent({
event: "sign-up",
category: "Account",
action: "click",
label: "Created account",
value: "Email and Password",
noninteraction: false,
method: "Email and Password",
});
this.$router.replace("/content");
Expand All @@ -140,11 +136,7 @@ export default {
.then(() => {
this.$gtm.trackEvent({
event: "sign-up",
category: "Account",
action: "click",
label: "Created account",
value: "Google",
noninteraction: false,
method: "Google",
});
this.$router.replace("/set-username");
})
Expand Down

0 comments on commit 99a373c

Please sign in to comment.