Skip to content

Commit

Permalink
fix: block toast message (#4170)
Browse files Browse the repository at this point in the history
  • Loading branch information
bigint committed Dec 11, 2023
1 parent 230232a commit bd797d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const BlockOrUnBlockProfile: FC = () => {
setHasBlocked(!hasBlocked);
setShowBlockOrUnblockAlert(false, null);
toast.success(
hasBlocked ? 'Blocked successfully!' : 'Unblocked successfully!'
hasBlocked ? 'Unblocked successfully!' : 'Blocked successfully!'
);
Leafwatch.track(hasBlocked ? PROFILE.BLOCK : PROFILE.UNBLOCK, {
profile_id: blockingorUnblockingProfile?.id
Expand Down

1 comment on commit bd797d6

@vercel
Copy link

@vercel vercel bot commented on bd797d6 Dec 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./

web-git-main-heyxyz.vercel.app
web-heyxyz.vercel.app
hey.xyz
heyxyz.vercel.app

Please sign in to comment.