diff options
author | Justin Shillingford <jgs272@cornell.edu> | 2020-06-30 09:04:02 -0400 |
---|---|---|
committer | Justin Shillingford <jgs272@cornell.edu> | 2020-06-30 09:04:02 -0400 |
commit | a484a53d729bce38adeb521e862518ea0f0044ff (patch) | |
tree | c5cbe340302de9123b3680ff5de2aa38fdac6dd6 | |
parent | f2a930622378c68197c0450c7990e99549f281a9 (diff) |
Forgot to lint
-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']} |