diff --git a/signup-ui/src/components/resend-attempt.tsx b/signup-ui/src/components/resend-attempt.tsx index a428f452..64fa451c 100644 --- a/signup-ui/src/components/resend-attempt.tsx +++ b/signup-ui/src/components/resend-attempt.tsx @@ -9,7 +9,7 @@ interface ResendAttemptProps { export const ResendAttempt = ({ currentAttempts, totalAttempts, - attemptRetryAfter = 5, + attemptRetryAfter = 300, }: ResendAttemptProps) => { const { t } = useTranslation(); return ( @@ -19,7 +19,7 @@ export const ResendAttempt = ({ {t("attempts_left", { attemptLeft: currentAttempts, totalAttempt: totalAttempts, - attemptRetryAfter: attemptRetryAfter, + attemptRetryAfter: attemptRetryAfter / 60, })} )}