diff options
-rw-r--r-- | src/screens/Login.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/screens/Login.tsx b/src/screens/Login.tsx index fe5748fc..c6f23c03 100644 --- a/src/screens/Login.tsx +++ b/src/screens/Login.tsx @@ -10,7 +10,7 @@ import { TouchableOpacity, StyleSheet, Keyboard, - TouchableWithoutFeedback + TouchableWithoutFeedback, } from 'react-native'; import {RootStackParams} from '../routes'; @@ -103,7 +103,10 @@ const Login = ({navigation}: LoginProps) => { return ( <> <StatusBar barStyle="light-content" /> - <TouchableWithoutFeedback onPress={() => {Keyboard.dismiss()}}> + <TouchableWithoutFeedback + onPress={() => { + Keyboard.dismiss(); + }}> <View style={styles.container}> <LinearGradient colors={['#8F00FF', '#6EE7E7']} |