QuickReply: Fix showing toggle mention in guilds (#3181)

This commit is contained in:
jamesbt365 2025-01-30 01:36:56 +00:00 committed by GitHub
parent 7d45862023
commit 68662c9625
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -196,7 +196,7 @@ function nextReply(isUp: boolean) {
channel,
message,
shouldMention: shouldMention(message),
showMentionToggle: channel.isPrivate() && message.author.id !== meId,
showMentionToggle: !channel.isPrivate() && message.author.id !== meId,
_isQuickReply: true
});
ComponentDispatch.dispatchToLastSubscribed("TEXTAREA_FOCUS");