diff --git a/packages/react-native/React/Base/RCTKeyCommands.m b/packages/react-native/React/Base/RCTKeyCommands.m index 19ef5b1f0d4..2fb0db60112 100644 --- a/packages/react-native/React/Base/RCTKeyCommands.m +++ b/packages/react-native/React/Base/RCTKeyCommands.m @@ -128,9 +128,8 @@ RCT_NOT_IMPLEMENTED(-(instancetype)init) isKeyDown = [event _isKeyDown]; } - BOOL interactionEnabled = !RCTSharedApplication().isIgnoringInteractionEvents; BOOL hasFirstResponder = NO; - if (isKeyDown && modifiedInput.length > 0 && interactionEnabled) { + if (isKeyDown && modifiedInput.length > 0) { UIResponder *firstResponder = nil; for (UIWindow *window in [self allWindows]) { firstResponder = [window valueForKey:@"firstResponder"];