mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
remove stopPropagation usage in Intro
This commit is contained in:
parent
4eb605a1b7
commit
298f3ea10e
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ const CredentialsTextInput = React.forwardRef((props, ref) => {
|
|||
|
||||
if (!event.nativeEvent.navigationPrevented) {
|
||||
if (['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight'].includes(event.key)) {
|
||||
event.stopPropagation();
|
||||
event.nativeEvent.spatialNavigationPrevented = true;
|
||||
}
|
||||
|
||||
if (event.key === 'ArrowDown') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue