PlatformIndicators: make mobile icon match Discord's (#1160)

This commit is contained in:
Nuckyz 2023-05-16 23:37:47 -03:00 committed by GitHub
parent d53476a32a
commit f6fd7cf37a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 12 deletions

View file

@ -209,7 +209,7 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
{(!channel.isGuildVoice() && !channel.isGuildStageVoice()) && (
<Text variant="text-lg/normal">
You can not see the {channel.isForumChannel() ? "posts" : "messages"} of this channel.
{channel.isForumChannel() && topic && topic.length > 0 && "However you may see its guidelines:"}
{channel.isForumChannel() && topic && topic.length > 0 && " However you may see its guidelines:"}
</Text >
)}