Skip to content

Commit

Permalink
fix: swap subscribe and unsubscribe events (#8900)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Dec 2, 2024
1 parent f833cf5 commit 40769c8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const ProductivityEmailSubscription: FC<{
});
trackEvent('productivity-report', {
props: {
eventType: 'subscribe',
eventType: 'unsubscribe',
},
});
} else {
Expand All @@ -44,7 +44,7 @@ export const ProductivityEmailSubscription: FC<{
});
trackEvent('productivity-report', {
props: {
eventType: 'unsubscribe',
eventType: 'subscribe',
},
});
}
Expand Down

0 comments on commit 40769c8

Please sign in to comment.