Skip to content

Commit

Permalink
v1.0.2 (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
2wndrhs authored Nov 28, 2024
2 parents 863108d + 442de46 commit 2f00d4b
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 2f00d4b

Please sign in to comment.