about summary refs log tree commit diff
path: root/src/view/com/post/Post.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-06-30 11:38:22 -0500
committerGitHub <noreply@github.com>2023-06-30 11:38:22 -0500
commit010588ee7c4064d01b10e75a69ac5e89ae839233 (patch)
treec26da1e6a82bbbee8bf18f016c52ef90002e0421 /src/view/com/post/Post.tsx
parented5a88d9d807c471a548bd9f23e0dcbf60c6cf6e (diff)
downloadvoidsky-010588ee7c4064d01b10e75a69ac5e89ae839233.tar.zst
Fix thread muting (#932)
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r--src/view/com/post/Post.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx
index fac27b842..c74abb894 100644
--- a/src/view/com/post/Post.tsx
+++ b/src/view/com/post/Post.tsx
@@ -178,9 +178,7 @@ const PostLoaded = observer(
       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')
         }