Skip to content

Commit

Permalink
fix: swap subscribe and unsubscribe events
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Dec 2, 2024
1 parent 44bcc49 commit d61def6
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 d61def6

Please sign in to comment.