Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update waiting for code time #3294

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/screens/phone-auth-screen/phone-login-validation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ export const PhoneLoginValidationScreen: React.FC<PhoneLoginValidationScreenProp
const isUpgradeFlow = currentLevel === AccountLevel.Zero

const [code, _setCode] = useState("")
const [secondsRemaining, setSecondsRemaining] = useState<number>(30)
// Wait 2.5 minutes before allowing another code request
const [secondsRemaining, setSecondsRemaining] = useState<number>(150)
const { phone, channel } = route.params
const {
theme: { colors },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ export const PhoneRegistrationValidateScreen: React.FC<
const [phoneValidate] = useUserPhoneRegistrationValidateMutation()

const [code, _setCode] = useState("")
const [secondsRemaining, setSecondsRemaining] = useState<number>(30)
// Wait 2.5 minutes before allowing another code request
const [secondsRemaining, setSecondsRemaining] = useState<number>(150)
const { phone, channel } = route.params

const {
Expand Down
Loading