From 59a2b834a60db7d09ea9fddffeb58b1c7383ef7c Mon Sep 17 00:00:00 2001 From: V Date: Tue, 5 Sep 2023 05:34:03 +0200 Subject: [PATCH] bleh --- src/plugins/serverProfile/GuildProfileModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/serverProfile/GuildProfileModal.tsx b/src/plugins/serverProfile/GuildProfileModal.tsx index 40fb72b2..1c1d4d7f 100644 --- a/src/plugins/serverProfile/GuildProfileModal.tsx +++ b/src/plugins/serverProfile/GuildProfileModal.tsx @@ -169,7 +169,7 @@ function ServerInfoTab({ guild }: GuildProps) { "Preferred Locale": guild.preferredLocale || "-", "Verification Level": ["None", "Low", "Medium", "High", "Highest"][guild.verificationLevel] || "?", "Nitro Boosts": `${guild.premiumSubscriberCount ?? 0} (Level ${guild.premiumTier ?? 0})`, - "Channels": GuildChannelStore.getChannels(guild.id)?.count - 1 ?? "?", // - null category + "Channels": GuildChannelStore.getChannels(guild.id)?.count - 1 || "?", // - null category "Roles": Object.keys(guild.roles).length - 1, // - @everyone };