about summary refs log tree commit diff
path: root/src/lib/hooks/useIsKeyboardVisible.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/hooks/useIsKeyboardVisible.ts')
-rw-r--r--src/lib/hooks/useIsKeyboardVisible.ts2
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'