Skip to content

Commit

Permalink
fix: 메일 인증 시간 10초 -> 8분으로 변경 (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
2wndrhs authored Nov 27, 2024
1 parent 916a8e7 commit 442de46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useSecondTimer } from '@/hooks/useSecondTimer.ts';

export const useEmailAuth = ({ onConfirm, email }: EmailAuthProps) => {
const [authed, setAuthed] = useState(true);
const { leftTime, isTimerEnd, resetTimer } = useSecondTimer(10);
const { leftTime, isTimerEnd, resetTimer } = useSecondTimer(8 * 60); // 8분
const [error, setError] = useState<string>('');
const [emailSending, setEmailSending] = useState(false);

Expand Down

0 comments on commit 442de46

Please sign in to comment.