Skip to content

Commit

Permalink
Feat: Add Workspace Wizard step viewed events (#3706)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikehrn authored Dec 17, 2024
1 parent 09e9356 commit f4f3ccf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,8 @@ const onSubmit = handleSubmit(() => {
goToNextStep()
})
onMounted(() => {
mixpanel.track('Workspace Details Step Viewed')
})
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,8 @@ const onSubmit = handleSubmit(() => {
goToNextStep()
})
onMounted(() => {
mixpanel.track('Workspace Invites Step Viewed')
})
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,8 @@ watch(
},
{ immediate: true }
)
onMounted(() => {
mixpanel.track('Workspace Pricing Step Viewed')
})
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,8 @@ watch(
},
{ immediate: true }
)
onMounted(() => {
mixpanel.track('Workspace Region Step Viewed')
})
</script>

0 comments on commit f4f3ccf

Please sign in to comment.