diff options
author | Nuckyz <61953774+Nuckyz@users.noreply.github.com> | 2023-02-16 21:31:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 01:31:55 +0100 |
commit | 3ca87848e575d19c93216c687a3ef61928ac4a9f (patch) | |
tree | ac05c6d00f4242d0f843ca17e4866a1a503ffd35 /src/plugins/typingIndicator.tsx | |
parent | 9420735bc7f545a6fc3488aafb494422e45e4df8 (diff) | |
download | Vencord-3ca87848e575d19c93216c687a3ef61928ac4a9f.tar.gz Vencord-3ca87848e575d19c93216c687a3ef61928ac4a9f.tar.bz2 Vencord-3ca87848e575d19c93216c687a3ef61928ac4a9f.zip |
TypingIndicator: Fix a dumb (#503)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins/typingIndicator.tsx')
-rw-r--r-- | src/plugins/typingIndicator.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/typingIndicator.tsx b/src/plugins/typingIndicator.tsx index f57eab3..27c143b 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: { |