Skip to content

Commit 7eda0a0

Browse files
committed
.
1 parent a710859 commit 7eda0a0

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

examples/basic/components/LoginForm.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,7 @@ export function LoginForm({ onLoginSuccess }: Props) {
5656
</Text>
5757
)}
5858

59-
<Pressable
60-
role="button"
61-
disabled={isLoading}
62-
onPress={handleSignIn}
63-
style={styles.button}
64-
>
59+
<Pressable role="button" disabled={isLoading} onPress={handleSignIn} style={styles.button}>
6560
{isLoading ? (
6661
<ActivityIndicator color="white" />
6762
) : (

0 commit comments

Comments
 (0)