Skip to content

Commit

Permalink
update passport number min size
Browse files Browse the repository at this point in the history
  • Loading branch information
remicolin committed Aug 16, 2024
1 parent e024963 commit 7b22c77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/screens/MainScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ const MainScreen: React.FC = () => {
bg={bgWhite}
color={textBlack}
h="$3.5"
borderColor={passportNumber?.length === 9 ? bgGreen : textBlack}
borderColor={passportNumber?.length >= 3 ? bgGreen : textBlack}
flex={1}
id="passportnumber"
onChangeText={(text) => {
Expand Down

0 comments on commit 7b22c77

Please sign in to comment.