-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: 회원가입 페이지 UI 추가 구현 #21
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다! LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다! 코멘트 한번씩 확인부탁드릴게요~
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
필요한 부분이 있어서 다시 읽어보다가 리뷰 다시 남깁니다!ㅎㅎ 별건 아니지만 코멘트 확인부탁드릴게요!
.github/workflows/check_errors.yml
Outdated
run: yarn tsc-project |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이 코드 패치에 대한 간단한 코드 리뷰를 도와드리겠습니다.
-
runs-on: self-hosted
를 주석 처리하고runs-on: ubuntu-latest
로 변경했습니다. 이렇게 함으로써 self-hosted 에이전트가 아닌 ubuntu-latest 에이전트에서 작업을 실행하게 됩니다. -
'Checkout' 단계 밑에 'Install dependencies' 단계가 누락되었는지 확인해야 합니다. 이 단계에서 프로젝트에 필요한 종속성(packages)을 설치하는 것이 일반적입니다. 만약 설치되어 있지 않다면 해당 단계를 추가해야 합니다.
-
마지막 줄에
\ No newline at end of file
주석은 파일 끝에 새 줄이 없음을 나타냅니다. 파일의 가독성을 위해 새 줄을 추가해주는 것이 좋습니다.
개선 제안 및 버그 위험 사항은 다음과 같습니다:
- 'Install dependencies' 단계 추가 여부 확인
- 필요한 경우, tsc-project의 명령 실행 전에 환경 설정 작업을 체크하고 수행할 수 있는지 확인
리뷰가 유용한지 확인하시고 개발 작업에 도움이 되시기를 바랍니다!
…-web into feat/signup-page ; Conflicts: ; src/shared/styles/globals.css
…/catcher-web into feat/signup-page
다시 확인 부탁드립니다! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다~ 추가한 코멘트는 가독성을 위한 개선제안입니다! 다음 작업때 확인부탁드릴게요
진욱님 브랜치를 머지받은 부분은 따로 코멘트하지않았습니다! 나중에 진욱님 브랜치가 수정되면서 충돌이 발생한다면 얘기해주세요!
onChange, | ||
...props | ||
}: InputProps) => { | ||
const [preview, setPreview] = useState(type === "password" ? false : true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const [preview, setPreview] = useState(type === "password" ? false : true); | |
const [preview, setPreview] = useState(type !== "password"); |
변경사항
테스트
TODO
생각할 것