Skip to content

Commit

Permalink
Remove empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ProchaLu committed Nov 18, 2024
1 parent efb789f commit e0a5ec9
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion app/(auth)/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ export default function Login() {
{fieldErrors.username && (
<Text style={styles.errorText}>{fieldErrors.username}</Text>
)}

<Text style={styles.label}>Password</Text>
<TextInput
style={[
Expand Down
3 changes: 0 additions & 3 deletions app/(auth)/register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ export default function Register() {
{fieldErrors.username && (
<Text style={styles.errorText}>{fieldErrors.username}</Text>
)}

<Text style={styles.label}>Password</Text>
<TextInput
style={[
Expand All @@ -152,15 +151,13 @@ export default function Register() {
{fieldErrors.password && (
<Text style={styles.errorText}>{fieldErrors.password}</Text>
)}

<View style={styles.promptTextContainer}>
<Text style={{ color: colors.text }}>Already have an account?</Text>
<Link href="/(auth)/login" style={{ color: colors.text }}>
Login
</Link>
</View>
</View>

<Pressable
style={({ pressed }) => [styles.button, { opacity: pressed ? 0.5 : 1 }]}
onPress={async () => {
Expand Down
2 changes: 0 additions & 2 deletions app/guests/newGuest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ export default function NewGuest() {
{fieldErrors.firstName && (
<Text style={styles.errorText}>{fieldErrors.firstName}</Text>
)}

<Text style={styles.label}>Last Name</Text>
<TextInput
style={[
Expand All @@ -128,7 +127,6 @@ export default function NewGuest() {
<Text style={styles.errorText}>{fieldErrors.lastName}</Text>
)}
</View>

<Pressable
style={({ pressed }) => [styles.button, { opacity: pressed ? 0.5 : 1 }]}
onPress={async () => {
Expand Down
2 changes: 0 additions & 2 deletions app/notes/newNote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export default function NewNote() {
{fieldErrors.title && (
<Text style={styles.errorText}>{fieldErrors.title}</Text>
)}

<Text style={styles.label}>Text</Text>
<TextInput
style={[
Expand All @@ -127,7 +126,6 @@ export default function NewNote() {
<Text style={styles.errorText}>{fieldErrors.textContent}</Text>
)}
</View>

<Pressable
style={({ pressed }) => [styles.button, { opacity: pressed ? 0.5 : 1 }]}
onPress={async () => {
Expand Down

0 comments on commit e0a5ec9

Please sign in to comment.