Skip to content

Commit

Permalink
fix: changed comment description
Browse files Browse the repository at this point in the history
  • Loading branch information
barttom committed Nov 2, 2023
1 parent b18fd59 commit a20986c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import CONST from '@src/CONST';
import SetShouldShowComposeInputKeyboardAware from './types';

let keyboardEventListener: EmitterSubscription | null = null;
// On iOS is visible delay with displaying input after keyboard has been closed with `keyboardDidHide` event
// On iOS, there is a visible delay in displaying input after the keyboard has been closed with the `keyboardDidHide` event
// Because of that - on iOS we can use `keyboardWillHide` that is not available on android
const keyboardEvent = getOperatingSystem() === CONST.OS.IOS ? 'keyboardWillHide' : 'keyboardDidHide';

Expand Down

0 comments on commit a20986c

Please sign in to comment.