Skip to content

Commit

Permalink
fix(mobile): Add the email trimming that was removed by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedBassem committed Feb 1, 2025
1 parent b643c59 commit 70e7239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/mobile/app/signin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default function Signin() {
autoCapitalize="none"
value={formState.email}
onChangeText={(e) =>
setFormState((s) => ({ ...s, email: e }))
setFormState((s) => ({ ...s, email: e.trim() }))
}
/>
</View>
Expand Down

0 comments on commit 70e7239

Please sign in to comment.