From ebad6d2b1aa1e54fc08264b8466bf92cced5c14b Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 3 Nov 2023 16:44:00 -0700 Subject: ListAddUser modal UX improvements (#1809) * typo * Add loading state to ListAddUser * Improve UI/UX of ListAddUser --- src/lib/hooks/useIsKeyboardVisible.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/hooks/useIsKeyboardVisible.ts') 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' -- cgit 1.4.1