Skip to content

Commit

Permalink
Merge pull request #56 from feedback-forest/develop
Browse files Browse the repository at this point in the history
[Release] 동의항목 첫 회원가입 시 받도록 수정
  • Loading branch information
kyubumjang authored Oct 17, 2024
2 parents 500551d + 3f2c759 commit bd85cd2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/app/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ const SignUpPage = () => {
clearErrors,
} = useForm<SignUpForm>();

// FIXME: 기본 값 false, 개발 편의상 true 처리 해둔거임 꼭 고쳐야됨
const [agree, setAgree] = useState<boolean>(true);
const [agree, setAgree] = useState<boolean>(false);
const [status, setStatus] = useState<InputLabelStatus>("default");
const [message, setMessage] = useState<string>("");

Expand Down
1 change: 0 additions & 1 deletion src/shared/ui/Footer/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"use client";

import { Divider } from "../Divider";
import { ExternalLink } from "../ExternalLink";
import { ExternalLinkProps } from "../ExternalLink/ExternalLink";
import Image from "next/image";
Expand Down

0 comments on commit bd85cd2

Please sign in to comment.