From 7c9cda781ba709aa0e01f0a0241dc0b4a4eaca0d Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 12 Aug 2024 10:49:27 -0500 Subject: [PATCH] Revert copy for WhoCanReply --- src/components/WhoCanReply.tsx | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/components/WhoCanReply.tsx b/src/components/WhoCanReply.tsx index 013de473a3..ee70568d1b 100644 --- a/src/components/WhoCanReply.tsx +++ b/src/components/WhoCanReply.tsx @@ -71,18 +71,11 @@ export function WhoCanReply({ const anyoneCanReply = settings.length === 1 && settings[0].type === 'everybody' const noOneCanReply = settings.length === 1 && settings[0].type === 'nobody' - const anyoneCanQuote = - !postgate.embeddingRules || postgate.embeddingRules.length === 0 - const noOneCanQuote = - postgate.embeddingRules?.length === 1 && - postgate.embeddingRules[0]?.$type === embeddingRules.disableRule.$type - const anyoneCanInteract = anyoneCanReply && anyoneCanQuote - const noOneCanInteract = noOneCanReply && noOneCanQuote - const description = anyoneCanInteract - ? _(msg`Anybody can interact`) - : noOneCanInteract - ? _(msg`Nobody can interact`) - : _(msg`Interaction limited`) + const description = anyoneCanReply + ? _(msg`Everybody can reply`) + : noOneCanReply + ? _(msg`Replies disabled`) + : _(msg`Some people can reply`) const onPressOpen = () => { if (isNative && Keyboard.isVisible()) {