Skip to content
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: 모집의뢰서 수정 #9

Merged
merged 2 commits into from Nov 4, 2023
Merged

Conversation

jikwan0327
Copy link
Member

close #5

@jikwan0327 jikwan0327 requested a review from a team as a code owner November 3, 2023 02:33
@jikwan0327 jikwan0327 requested review from JJIIIINN and removed request for a team November 3, 2023 02:33
@jikwan0327 jikwan0327 self-assigned this Nov 3, 2023
Copy link

cloudflare-pages bot commented Nov 3, 2023

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 8287aeb
Status: ✅  Deploy successful!
Preview URL: https://cd650238.jobis-company.pages.dev
Branch Preview URL: https://feature-5-edit-recruitments.jobis-company.pages.dev

View logs

@@ -81,6 +81,7 @@ export default function SignIn() {
placeholder="사업자 번호를 입력해주세요"
maxLength={12}
onChange={onChange}
autoComplete="off"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

on 하면 어떻게 되요?
기본값이 on인가요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

그 인풋에서 밑에 auto complete를 삭제하는 건데
https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete 이 자료 참고해보시면 됩니다.
기본값은 on이 맞습니다

@@ -38,7 +38,7 @@ const EditRecruitArea = ({ setForm }: IPropsType) => {
job_codes: area.job_codes,
});
}
}, [myRecruitment]);
}, [myRecruitment, area.id, area.hiring, area.job_codes, area.major_task, area.tech_codes, setArea]);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

area 하나로 대체하면 되는 거 아닌가요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

그러네요 수정하겠습니다

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이거 하니까 문제가 생겨서 다시 복구했습니다

@@ -23,20 +23,20 @@ export const Spinner = ({ size = 180, position, isMessage }: LoadingProps) => {
}, [message]);

return (
<_Wrapper pos={position ?? "center"}>
<_Wrapper $pos={position ?? "center"}>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$는 styled components전용이라는걸 표기해주는 건가요?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이게 이렇게 안하니까 경고가 뜨더라구요.
스크린샷 2023-11-03 오후 12 18 34
이 이미지 에러가 계속 떠서 일단 얘만 실험으로 안뜨는지 확인한다고 사용하였습니다
styled-components/styled-components#4071
이 에러와 동일한 거 같네요

Copy link
Member

@JJIIIINN JJIIIINN Nov 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

transient props 검색해보시면 됩니다.
간단히 말해서 props로써 값 결정하는 데에만 쓰이고 실제 dom에는 적용되지 않게 됩니다.
때문에 지관이가 말한 저 에러 또한 잡히는 겁니다.

}
}, [myRecruitment, setForm]);

if (isLoading) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

p1) 이 코드 페이지마다 계속 나오는 것 같은데 suspense 써보는 건 어떨까요?

@jikwan0327 jikwan0327 merged commit 0466de5 into develop Nov 4, 2023
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

모집의뢰서 수정
3 participants