We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa19d56 commit f320ef8Copy full SHA for f320ef8
packages/react-interactions/events/src/dom/create-event-handle/Focus.js
@@ -69,7 +69,7 @@ function isValidKey(nativeEvent: KeyboardEvent): boolean {
69
70
function isTextInput(nativeEvent: KeyboardEvent): boolean {
71
const {key, target} = nativeEvent;
72
- if (key === 'Tab' || key === 'Esacpe') {
+ if (key === 'Tab' || key === 'Escape') {
73
return false;
74
}
75
const {isContentEditable, tagName} = (target: any);
0 commit comments