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

진이 pr 빌드 에러 복구하기 #905

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/edit/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ const EditPage = () => {
detail: {
desc: formData?.desc,
processDesc: formData?.processDesc,
mStartDate: dayjs(formData?.getmStartDate).format('YYYY.MM.DD'),
mEndDate: dayjs(formData?.getmEndDate).format('YYYY.MM.DD'),
mStartDate: dayjs(formData?.mStartDate).format('YYYY.MM.DD'),
mEndDate: dayjs(formData?.mEndDate).format('YYYY.MM.DD'),
leaderDesc: formData?.leaderDesc,
isMentorNeeded: formData?.isMentorNeeded,
joinableParts,
Expand Down
1 change: 1 addition & 0 deletions pages/make/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const MakePage = () => {
formMethods.setValue('files', files);
};

//todo: 나중에 없애기 - pr을 위한 주석
const onSubmit: SubmitHandler<FormType> = async formData => {
const meetingId = await mutateCreateMeeting(formData);
ampli.completedMakeGroup();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ const InformationPanel = ({ detailData }: InformationPanelProps) => {
{
id: 1,
title: '활동 기간',
content: `${dayjs(detailData?.getmStartDate ?? '').format('YYYY.MM.DD (ddd)')} ~ ${dayjs(
detailData?.getmEndDate ?? ''
content: `${dayjs(detailData?.mStartDate ?? '').format('YYYY.MM.DD (ddd)')} ~ ${dayjs(
detailData?.mEndDate ?? ''
).format('YYYY.MM.DD (ddd)')}`,
},
{
Expand Down
Loading