diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-11-03 16:44:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-03 16:44:00 -0700 |
commit | ebad6d2b1aa1e54fc08264b8466bf92cced5c14b (patch) | |
tree | a1fe54b5931dc6a7786d13fa5d70f842d4c6e8db /src/lib/hooks/useIsKeyboardVisible.ts | |
parent | 4de852ded83fd7f2445040792184ab83eab1e5e4 (diff) | |
download | voidsky-ebad6d2b1aa1e54fc08264b8466bf92cced5c14b.tar.zst |
ListAddUser modal UX improvements (#1809)
* typo * Add loading state to ListAddUser * Improve UI/UX of ListAddUser
Diffstat (limited to 'src/lib/hooks/useIsKeyboardVisible.ts')
-rw-r--r-- | src/lib/hooks/useIsKeyboardVisible.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hooks/useIsKeyboardVisible.ts b/src/lib/hooks/useIsKeyboardVisible.ts index 5b2a86eb0..38fc80bde 100644 --- a/src/lib/hooks/useIsKeyboardVisible.ts +++ b/src/lib/hooks/useIsKeyboardVisible.ts @@ -10,7 +10,7 @@ export function useIsKeyboardVisible({ const [isKeyboardVisible, setKeyboardVisible] = useState(false) // NOTE - // only iOS suppose the "will" events + // only iOS supports the "will" events // -prf const showEvent = isIOS && iosUseWillEvents ? 'keyboardWillShow' : 'keyboardDidShow' |