From 3ca87848e575d19c93216c687a3ef61928ac4a9f Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Thu, 16 Feb 2023 21:31:55 -0300 Subject: [PATCH] TypingIndicator: Fix a dumb (#503) Co-authored-by: Ven --- src/plugins/typingIndicator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/typingIndicator.tsx b/src/plugins/typingIndicator.tsx index f57eab3eb..27c143b02 100644 --- a/src/plugins/typingIndicator.tsx +++ b/src/plugins/typingIndicator.tsx @@ -73,7 +73,7 @@ function TypingIndicator({ channelId }: { channelId: string; }) { break; } case 3: { - tooltipText = Formatters.Messages.THREE_USERS_TYPING.format({ a: getDisplayName(guildId, typingUsersArray[0]), b: getDisplayName(guildId, typingUsersArray[1]), c: getDisplayName(guildId, typingUsersArray[1]) }); + tooltipText = Formatters.Messages.THREE_USERS_TYPING.format({ a: getDisplayName(guildId, typingUsersArray[0]), b: getDisplayName(guildId, typingUsersArray[1]), c: getDisplayName(guildId, typingUsersArray[2]) }); break; } default: {