From 6a77323cbe0b35bd4c66c29c010a620c54abbcb8 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 12 Aug 2024 10:52:41 -0500 Subject: [PATCH] Only show quote disable copy if disabled --- src/components/WhoCanReply.tsx | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/src/components/WhoCanReply.tsx b/src/components/WhoCanReply.tsx index ee70568d1b..11db92d06c 100644 --- a/src/components/WhoCanReply.tsx +++ b/src/components/WhoCanReply.tsx @@ -320,19 +320,17 @@ function Rules({ )}{' '} - - {noOneCanQuote ? ( + {noOneCanQuote && ( + No one but the author can quote this post. - ) : ( - Anyone can quote this post. - )} - + + )} ) }