diff options
author | Lily • Lylythii <lylythiidev@gmail.com> | 2023-04-17 00:46:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 01:46:51 +0200 |
commit | 72f6dd84eecf4ab56fd06b1d8e48fe05805ceb2b (patch) | |
tree | d0c214fe16c4e1ca5b86c95c09288e232f96829b | |
parent | 9c929a4d989a0a304900f02e7e7214b095d96a2f (diff) | |
download | Vencord-72f6dd84eecf4ab56fd06b1d8e48fe05805ceb2b.tar.gz Vencord-72f6dd84eecf4ab56fd06b1d8e48fe05805ceb2b.tar.bz2 Vencord-72f6dd84eecf4ab56fd06b1d8e48fe05805ceb2b.zip |
SilentTyping: Make Tooltip text casing consistent w other plugins (#918)
-rw-r--r-- | src/plugins/silentTyping.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/silentTyping.tsx b/src/plugins/silentTyping.tsx index 6d82840..ffde543 100644 --- a/src/plugins/silentTyping.tsx +++ b/src/plugins/silentTyping.tsx @@ -48,7 +48,7 @@ function SilentTypingToggle(chatBoxProps: { if (chatBoxProps.type.analyticsName !== "normal") return null; return ( - <Tooltip text={isEnabled ? "Disable silent typing" : "Enable silent typing"}> + <Tooltip text={isEnabled ? "Disable Silent Typing" : "Enable Silent Typing"}> {(tooltipProps: any) => ( <div style={{ display: "flex" }}> <Button |