From 010588ee7c4064d01b10e75a69ac5e89ae839233 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 30 Jun 2023 11:38:22 -0500 Subject: Fix thread muting (#932) --- src/view/com/post-thread/PostThreadItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/view/com/post-thread/PostThreadItem.tsx') diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 692fac9e9..c691e7f36 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -114,7 +114,7 @@ export const PostThreadItem = observer(function PostThreadItem({ try { await item.toggleThreadMute() if (item.isThreadMuted) { - Toast.show('You will no longer received notifications for this thread') + Toast.show('You will no longer receive notifications for this thread') } else { Toast.show('You will now receive notifications for this thread') } -- cgit 1.4.1