diff --git a/web/components/follow-market-button.tsx b/web/components/follow-market-button.tsx index 44f4d4be..45d26ce4 100644 --- a/web/components/follow-market-button.tsx +++ b/web/components/follow-market-button.tsx @@ -34,7 +34,7 @@ export const FollowMarketButton = (props: { toast("You'll no longer receive notifications from this market", { icon: , }) - track('Unfollow Market', { + track('Unwatch Market', { slug: contract.slug, }) } else { @@ -42,7 +42,7 @@ export const FollowMarketButton = (props: { toast("You'll now receive notifications from this market!", { icon: , }) - track('Follow Market', { + track('Watch Market', { slug: contract.slug, }) } @@ -69,7 +69,7 @@ export const FollowMarketButton = (props: { open={open} setOpen={setOpen} title={`You ${ - followers?.includes(user?.id ?? 'nope') ? 'followed' : 'unfollowed' + followers?.includes(user?.id ?? 'nope') ? 'watched' : 'unwatched' } a question!`} />