diff --git a/src/routes/Intro/CredentialsTextInput/CredentialsTextInput.js b/src/routes/Intro/CredentialsTextInput/CredentialsTextInput.js index 4c200c702..bde7dd9a2 100644 --- a/src/routes/Intro/CredentialsTextInput/CredentialsTextInput.js +++ b/src/routes/Intro/CredentialsTextInput/CredentialsTextInput.js @@ -13,10 +13,12 @@ const CredentialsTextInput = React.forwardRef((props, ref) => { event.nativeEvent.spatialNavigationPrevented = true; } - if (event.key === 'ArrowDown') { - window.navigate('down'); - } else if (event.key === 'ArrowUp') { - window.navigate('up'); + if (!event.shiftKey) { + if (event.key === 'ArrowDown') { + window.navigate('down'); + } else if (event.key === 'ArrowUp') { + window.navigate('up'); + } } } }, [props.onKeyDown]);