Skip to content

Commit

Permalink
Merge pull request #200 from choiyoubin/test
Browse files Browse the repository at this point in the history
Fix:Timer시간 수정
  • Loading branch information
choiyoubin authored Mar 26, 2024
2 parents aad63c2 + eb82234 commit 30d4305
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import useSendVerifySms from "../../../../hooks/useSendVerifySms";
import RedButton from "../../redButton/RedButton";
import CertificationNumInput from "../CertificationNumInput/CertificationNumInput";
import "./CertificationInput.css";
const TIMER_DURATION = 600; //타이머 시간 설정(600초)
const TIMER_DURATION = 180; //타이머 시간 설정(600초)

// 아이디찾기 및 회원가입 번호인증에 사용
function CertificationInput({ type, buttonText }) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import RedButton from "../../redButton/RedButton";
import "../CertificationInput/CertificationInput.css";
import CertificationInputCheck from "./CertificationInputCheck";

const TIMER_DURATION = 600; //타이머 시간 설정(600초)
const TIMER_DURATION = 180; //타이머 시간 설정(600초)

// 비밀번호 변경 번호 인증_번호입력
// 추후 아이디 찾기 및 회원가입 번호인증과 비교 후 수정 필요
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import useSendVerifySms from "../../../../hooks/useSendVerifySms";
import RedButton from "../../../login/redButton/RedButton";
import "./UserInputNumber.css";
import UserInputNumberMessage from "./UserInputNumberMessage/UserInputNumberMessage";
const TIMER_DURATION = 600; //타이머 시간 설정(600초)
const TIMER_DURATION = 180; //타이머 시간 설정(600초)

function PhoneCertificationInput() {
const [chkButton, setChkButton] = useState(false); // 인증버튼 클릭 여부
Expand Down

0 comments on commit 30d4305

Please sign in to comment.