From bfb97040b9e939d705778461c1857ccb36883d72 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Mon, 17 Feb 2025 01:17:55 -0500 Subject: [PATCH] Fix Typos --- src/plugins/roleColorEverywhere/index.tsx | 2 +- src/plugins/typingTweaks/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/roleColorEverywhere/index.tsx b/src/plugins/roleColorEverywhere/index.tsx index d00016a0..29747d37 100644 --- a/src/plugins/roleColorEverywhere/index.tsx +++ b/src/plugins/roleColorEverywhere/index.tsx @@ -165,7 +165,7 @@ export default definePlugin({ getColorString(userId: string, channelOrGuildId: string) { try { - if (Settings.plugins.customUserColors.enabled) + if (Settings.plugins.CustomUserColors.enabled) return getCustomColorString(userId, true); const guildId = ChannelStore.getChannel(channelOrGuildId)?.guild_id ?? GuildStore.getGuild(channelOrGuildId)?.id; diff --git a/src/plugins/typingTweaks/index.tsx b/src/plugins/typingTweaks/index.tsx index 7991b058..69226e1c 100644 --- a/src/plugins/typingTweaks/index.tsx +++ b/src/plugins/typingTweaks/index.tsx @@ -60,7 +60,7 @@ interface Props { function typingUserColor(guildId: string, userId: string) { if (!settings.store.showRoleColors) return; - if (Settings.plugins.customUserColors.enabled) return getCustomColorString(userId, true); + if (Settings.plugins.CustomUserColors.enabled) return getCustomColorString(userId, true); return GuildMemberStore.getMember(guildId, userId)?.colorString; }