-
Notifications
You must be signed in to change notification settings - Fork 35
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
[이형준]sprint11 #310
The head ref may contain hidden characters: "Next-\uC774\uD615\uC900-sprint11"
[이형준]sprint11 #310
Conversation
…ithub-actions [Fix] delete merged branch github action
- 다른 사람이 비정상적으로 올린 모든 이미지 url에 모두 대응해야하는 문제 임시적으로 해결함 - 이후에 컴포넌트 상에서 s3 주소만 필터링해서 띄우는 방향으로 수정할 예정
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.
컴포넌트를 잘 쪼개서 signup 페이지와 login 페이지를 레고 조립하듯이 설계하신 점이 좋아보이네요! 과제 하느라 고생하셨습니다~
} catch (error) { | ||
console.log(error); | ||
console.error(error); |
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.
console.error 반영해주신거 좋네요 :)
@@ -27,7 +27,7 @@ const onErrorResponse = async (error: AxiosError | Error) => { | |||
|
|||
switch (status) { | |||
case 400: { | |||
alert("입력한 정보가 올바르지 않습니다."); | |||
alert(data.message); |
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.
시간이 되신다면 alert을 나타내는 ui를 반영해보시는 것도 추천드려요!
@@ -11,7 +11,7 @@ const NAV_MENU_INFO = [ | |||
|
|||
export default function GlobalNavBar() { | |||
const { pathname } = useRouter(); | |||
const isMain = pathname === "/" ? true : false; | |||
const isMain = pathname === "/"; |
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 currentTargetId = e.target.id; | ||
const currentValue = e.target.value; |
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.
여기도 밑에서 사용하신 것 처럼 구조분해 할당을 활용하는 방법도 추천드립니다!
사이트 배포 링크
요구사항
피그마 링크
기본 요구사항
체크리스트 (기본)
회원가입
로그인
메인
피드백 반영
추가 예정 사항
주요 변경사항
멘토에게