From e03f71e2fe8d50f77465f521cd48f466ec37baea Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 14:29:00 +0900 Subject: [PATCH 01/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EC=8A=A4?= =?UTF-8?q?=ED=85=8C=EB=94=94=20=EC=9A=B4=EC=98=81=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EB=B0=98=EC=9D=91=ED=98=95=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(steady)/steady/manage/[id]/page.tsx | 362 +++++++++---------- src/components/_common/Button/index.tsx | 2 +- 2 files changed, 181 insertions(+), 183 deletions(-) diff --git a/src/app/(steady)/steady/manage/[id]/page.tsx b/src/app/(steady)/steady/manage/[id]/page.tsx index a4f6dac2..5615d7b9 100644 --- a/src/app/(steady)/steady/manage/[id]/page.tsx +++ b/src/app/(steady)/steady/manage/[id]/page.tsx @@ -122,17 +122,18 @@ const SteadyManagePage = ({ params }: { params: { id: string } }) => { } return ( -
-
-
- {`${steadyDetailsData.name} 운영 페이지`} +
+
+
+ {steadyDetailsData.name} + 스테디 운영
-
+
- -
- - - {steadyParticipantsData.participants.map((participant) => ( - { - setCurrentUserIndex( - steadyParticipantsData.participants.findIndex( - (item) => item.id === participant.id, - ), - ); - }} - > - {participant.nickname} - - ))} - -
- {steadyParticipantsData.participants.map((participant) => ( - - {!participantDetailsData.isDeleted ? ( -
-
-
-
- 멤버 정보 + + + + + {steadyParticipantsData.participants.map((participant) => ( + { + setCurrentUserIndex( + steadyParticipantsData.participants.findIndex( + (item) => item.id === participant.id, + ), + ); + }} + > + {participant.nickname} + + ))} + +
+ {steadyParticipantsData.participants.map((participant) => ( + + {!participantDetailsData.isDeleted ? ( +
+
+
+
+ 멤버 정보 +
+ {"내 +
+ {participantDetailsData.user.nickname} +
+ + {participantDetailsData.user.position.name} + +
+
+ {participantDetailsData.user.stacks.map((stack) => ( + + {stack.name} + + ))}
- {"내
- {participantDetailsData.user.nickname} -
- - {participantDetailsData.user.position.name} - -
-
- {participantDetailsData.user.stacks.map((stack) => ( - - {stack.name} - - ))} -
-
- {participantDetailsData.user.bio ?? - "소개가 없습니다."} -
-
- {participantDetailsData.userCards.map((card) => ( -
- 카드 이미지 -
- {`( ${card.count} )`} -
-
- ))} -
-
+ {participantDetailsData.user.bio ?? + "소개가 없습니다."} +
+
+ {participantDetailsData.userCards.map((card) => (
- {participantDetailsData.reviews.length}개의 리뷰 -
- - {participantDetailsData.reviews.map( - (review, idx) => ( - <> -
- {review} -
- - - ), - )} -
-
+ 카드 이미지 +
+ {`( ${card.count} )`} +
+
+ ))}
-
-
- {steadyDetailsData.leaderResponse.id !== - participantDetailsData.user.userId && ( -
-
-
- 스테디 참여자 추방 시 되돌릴 수 없습니다. +
+
+ {participantDetailsData.reviews.length}개의 리뷰
- {/* TODO: 유저 추방 기능 구현 */} - - 멤버 추방 - - } - actionButton={ - - } + - 정말 해당 멤버를 추방하시겠습니까? - + {participantDetailsData.reviews.map( + (review, idx) => ( + <> +
+ {review} +
+ + + ), + )} +
- )} -
- ) : ( -
-
- 탈퇴한 유저 이미지 -
- 탈퇴한 유저 입니다. -
-
+
+ {steadyDetailsData.leaderResponse.id !== + participantDetailsData.user.userId && ( +
스테디 참여자 추방 시 되돌릴 수 없습니다. @@ -397,13 +355,53 @@ const SteadyManagePage = ({ params }: { params: { id: string } }) => {
+ )} +
+ ) : ( +
+
+ 탈퇴한 유저 이미지 +
탈퇴한 유저 입니다.
- )} - - ))} -
- -
+
+
+
+ 스테디 참여자 추방 시 되돌릴 수 없습니다. +
+ {/* TODO: 유저 추방 기능 구현 */} + + 멤버 추방 + + } + actionButton={ + + } + > + 정말 해당 멤버를 추방하시겠습니까? + +
+
+
+ )} + + ))} +
+ +
); diff --git a/src/components/_common/Button/index.tsx b/src/components/_common/Button/index.tsx index 89dd7185..a00f2932 100644 --- a/src/components/_common/Button/index.tsx +++ b/src/components/_common/Button/index.tsx @@ -5,7 +5,7 @@ export const buttonSize = { xl: "w-165 h-50 rounded-6 text-18", lg: "w-140 h-50 text-18", md: "w-115 h-50 text-18", - sm: "w-90 min-h-35 text-15", + sm: "w-90 min-h-35 text-15 max-sm:text-12", }; interface ButtonProps extends ButtonHTMLAttributes { From 6202662fcff56bf4db8fdf7720c74da8913e0402 Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 14:56:37 +0900 Subject: [PATCH 02/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EB=B2=84?= =?UTF-8?q?=ED=8A=BC=20sm=20=ED=81=AC=EA=B8=B0=20=EC=8A=A4=ED=83=80?= =?UTF-8?q?=EC=9D=BC=EB=A7=81=20=EB=B0=98=EC=9D=91=ED=98=95=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/_common/Button/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/_common/Button/index.tsx b/src/components/_common/Button/index.tsx index a00f2932..89dd7185 100644 --- a/src/components/_common/Button/index.tsx +++ b/src/components/_common/Button/index.tsx @@ -5,7 +5,7 @@ export const buttonSize = { xl: "w-165 h-50 rounded-6 text-18", lg: "w-140 h-50 text-18", md: "w-115 h-50 text-18", - sm: "w-90 min-h-35 text-15 max-sm:text-12", + sm: "w-90 min-h-35 text-15", }; interface ButtonProps extends ButtonHTMLAttributes { From 17261802625a67802df20fac2dc8c5e90d8b6c1c Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 14:57:15 +0900 Subject: [PATCH 03/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EC=8A=A4?= =?UTF-8?q?=ED=85=8C=EB=94=94=20=EC=9A=B4=EC=98=81=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EB=B0=98=EC=9D=91=ED=98=95=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(steady)/steady/manage/[id]/page.tsx | 26 ++++++++++++++------ 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/src/app/(steady)/steady/manage/[id]/page.tsx b/src/app/(steady)/steady/manage/[id]/page.tsx index 5615d7b9..aeb8e9d8 100644 --- a/src/app/(steady)/steady/manage/[id]/page.tsx +++ b/src/app/(steady)/steady/manage/[id]/page.tsx @@ -133,7 +133,7 @@ const SteadyManagePage = ({ params }: { params: { id: string } }) => {
{participantDetailsData.reviews.map( @@ -328,8 +328,18 @@ const SteadyManagePage = ({ params }: { params: { id: string } }) => {
{steadyDetailsData.leaderResponse.id !== participantDetailsData.user.userId && ( -
-
+
+
스테디 참여자 추방 시 되돌릴 수 없습니다.
@@ -351,7 +361,9 @@ const SteadyManagePage = ({ params }: { params: { id: string } }) => { } > - 정말 해당 멤버를 추방하시겠습니까? + + 정말 해당 멤버를 추방하시겠습니까? +
From f901948ad55094068e7a92567a5576233ecf1b50 Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 16:00:57 +0900 Subject: [PATCH 04/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20input=20bor?= =?UTF-8?q?der=20=EC=B6=94=EA=B0=80=20=EB=B0=8F=20=EB=86=92=EC=9D=B4=20?= =?UTF-8?q?=EC=9E=AC=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/_common/Input/index.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/_common/Input/index.tsx b/src/components/_common/Input/index.tsx index 289093a5..621ed4b0 100644 --- a/src/components/_common/Input/index.tsx +++ b/src/components/_common/Input/index.tsx @@ -27,7 +27,7 @@ const Input = ({ input = (
+
Date: Thu, 30 Nov 2023 16:25:57 +0900 Subject: [PATCH 05/12] =?UTF-8?q?=F0=9F=93=9D=20Chore(#286):=20=EC=BD=98?= =?UTF-8?q?=EC=86=94=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(user-menu)/mysteady/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/(user-menu)/mysteady/page.tsx b/src/app/(user-menu)/mysteady/page.tsx index 7848ea57..ac6197c6 100644 --- a/src/app/(user-menu)/mysteady/page.tsx +++ b/src/app/(user-menu)/mysteady/page.tsx @@ -39,7 +39,6 @@ const MySteadyPage = () => { }); const ref = useScrollTo({ top: 0 }, [search]); - console.log(mySteadyData); const renderIcon = (steady: MySteadyContentType) => { if (search === "finished") { return
; From bb9e6650880d4814b9f08df918223fa94f0156e1 Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 16:26:23 +0900 Subject: [PATCH 06/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EC=8A=A4?= =?UTF-8?q?=ED=85=8C=EB=94=94=20=EC=83=9D=EC=84=B1=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EB=B0=98=EC=9D=91=ED=98=95=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(steady)/steady/create/page.tsx | 104 ++++++++++++------------ 1 file changed, 53 insertions(+), 51 deletions(-) diff --git a/src/app/(steady)/steady/create/page.tsx b/src/app/(steady)/steady/create/page.tsx index 8cf77587..88c634f2 100644 --- a/src/app/(steady)/steady/create/page.tsx +++ b/src/app/(steady)/steady/create/page.tsx @@ -79,7 +79,9 @@ const CreateSteadyPage = () => { }; return ( -
+

@@ -90,49 +92,52 @@ const CreateSteadyPage = () => { my={"3"} className={cn("h-3 bg-st-gray-400")} /> - ( - - - { - field.onChange(value); - }} - /> - - - - )} - /> -
- ( - - - { - field.onChange(value); - }} - /> - - - - )} - /> -
+
+ ( + + + { + field.onChange(value); + }} + /> + + + + )} + /> + ( + + + { + field.onChange(value); + }} + /> + + + + )} + /> +
+
{ { field.onChange(selected); }} @@ -160,7 +165,7 @@ const CreateSteadyPage = () => { { field.onChange(selected); }} @@ -178,7 +183,7 @@ const CreateSteadyPage = () => { { field.onChange(Number(selected)); }} @@ -195,7 +200,7 @@ const CreateSteadyPage = () => { { field.onChange(format(date, "yyyy-MM-dd")); }} @@ -205,15 +210,12 @@ const CreateSteadyPage = () => { )} /> -
-
+ ( - + { value: position.id.toString(), label: position.name, }))} - className={cn("w-200")} + className={cn("w-full")} onSelectedChange={(selected) => { field.onChange(extractValue(selected).map(Number)); }} @@ -239,7 +241,7 @@ const CreateSteadyPage = () => { { field.onChange(selected); }} @@ -253,14 +255,14 @@ const CreateSteadyPage = () => { control={steadyForm.control} name={"stacks"} render={({ field }) => ( - + ({ value: stack.id.toString(), label: stack.name, }))} - className={cn("w-455")} + className={cn("w-full")} onSelectedChange={(selected) => { field.onChange(extractValue(selected).map(Number)); }} From f6c3300e8d931c59f3a162d55241df8b1ce33f27 Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 16:29:50 +0900 Subject: [PATCH 07/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EC=8A=A4?= =?UTF-8?q?=ED=85=8C=EB=94=94=20=EC=97=B0=EB=9D=BD=20=EC=88=98=EB=8B=A8=20?= =?UTF-8?q?placeholder=20ellipsis=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/_common/Input/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/_common/Input/index.tsx b/src/components/_common/Input/index.tsx index 621ed4b0..608b267f 100644 --- a/src/components/_common/Input/index.tsx +++ b/src/components/_common/Input/index.tsx @@ -73,7 +73,7 @@ const Input = ({ input = (
Date: Thu, 30 Nov 2023 16:48:07 +0900 Subject: [PATCH 08/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EC=8A=A4?= =?UTF-8?q?=ED=85=8C=EB=94=94=20=EC=8B=A0=EC=B2=AD=EC=84=9C=20=EC=A7=88?= =?UTF-8?q?=EB=AC=B8=20=EB=93=B1=EB=A1=9D=20=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?=EB=B0=98=EC=9D=91=ED=98=95=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../(steady)/steady/create/questions/page.tsx | 247 ++++++++++-------- 1 file changed, 131 insertions(+), 116 deletions(-) diff --git a/src/app/(steady)/steady/create/questions/page.tsx b/src/app/(steady)/steady/create/questions/page.tsx index 065d7739..b3e59ff3 100644 --- a/src/app/(steady)/steady/create/questions/page.tsx +++ b/src/app/(steady)/steady/create/questions/page.tsx @@ -160,138 +160,153 @@ const CreateQuestionsPage = () => { return (
-
-

스테디 신청서 질문 등록

-
- ({ - value: item.id.toString(), - label: item.title, - }), - )} - initialLabel={"질문 템플릿"} - onSelectedChange={(selected) => { - handleSelectTemplate(selected); - }} - /> - +
+
+ + +
+ { - handleAddQuestion(); - }} > - 질문 추가 - -
-
- -
- -
- {question.map((item) => ( -
+
+ {question.map((item) => (
- - { - setQuestion((prev) => - prev.map((pItem) => { - if (pItem.id === item.id) { - return { - ...pItem, - question: event.target.value, - }; - } - return pItem; - }), - ); - }} - /> - -
{ - handleDeleteQuestion(item.id); - }} + key={item.id} + className={cn( + "flex h-70 items-center justify-between gap-30 rounded-10 p-10 shadow-lg", + )} > - +
+
+ + { + setQuestion((prev) => + prev.map((pItem) => { + if (pItem.id === item.id) { + return { + ...pItem, + question: event.target.value, + }; + } + return pItem; + }), + ); + }} + /> + +
+
{ + handleDeleteQuestion(item.id); + }} + > + +
-
- ))} + ))} +
+ + +
+
- - -
+
+ +
+
+ setIsTemplateTitleSetting(false)} + onSave={handleSaveTemplate} + />
- -
- - -
- setIsTemplateTitleSetting(false)} - onSave={handleSaveTemplate} - />
); }; From 989efdc864413080131ce7af1f860285f8f4b702 Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 17:01:18 +0900 Subject: [PATCH 09/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EC=8A=A4?= =?UTF-8?q?=ED=85=8C=EB=94=94=20=EC=8B=A0=EC=B2=AD=EC=84=9C=20=EC=A7=88?= =?UTF-8?q?=EB=AC=B8=20=EC=88=98=EC=A0=95=20=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?=EB=B0=98=EC=9D=91=ED=98=95=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../steady/edit/questions/[id]/page.tsx | 227 ++++++++++-------- 1 file changed, 123 insertions(+), 104 deletions(-) diff --git a/src/app/(steady)/steady/edit/questions/[id]/page.tsx b/src/app/(steady)/steady/edit/questions/[id]/page.tsx index a9bcb5b3..9b3cd7ef 100644 --- a/src/app/(steady)/steady/edit/questions/[id]/page.tsx +++ b/src/app/(steady)/steady/edit/questions/[id]/page.tsx @@ -176,124 +176,143 @@ const EditQuestionsPage = ({ params }: { params: { id: string } }) => { return (
-
-

스테디 신청서 질문

-
- ({ - value: item.id.toString(), - label: item.title, - }), - )} - initialLabel={"질문 템플릿"} - onSelectedChange={(selected) => { - handleSelectTemplate(selected); - }} - /> - +
+
+ + +
+ { - handleAddQuestion(); - }} > - 질문 추가 - -
-
- -
- -
- {question.map((item) => ( -
+
+ {question.map((item) => (
- - { - handleInputQuestion(event, item.sequence); - }} - /> - -
{ - handleDeleteQuestion(item.sequence); - }} + key={item.sequence} + className={cn( + "z-10 flex h-70 items-center justify-between gap-30 rounded-10 p-10 shadow-lg", + )} > - +
+
+ + { + handleInputQuestion(event, item.sequence); + }} + /> + +
+
{ + handleDeleteQuestion(item.sequence); + }} + > + +
-
- ))} + ))} +
+ + +
+
- - -
+
+ +
+
+ setIsTemplateTitleSetting(false)} + onSave={handleSaveTemplate} + />
- -
- - -
- setIsTemplateTitleSetting(false)} - onSave={handleSaveTemplate} - />
); }; From 97b3d207b23f1e91f42e00532c061b5338a32e46 Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 17:18:28 +0900 Subject: [PATCH 10/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EC=8A=BD?= =?UTF-8?q?=ED=85=8C=EB=94=94=20=EC=88=98=EC=A0=95=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EB=B0=98=EC=9D=91=ED=98=95=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(steady)/steady/edit/[id]/page.tsx | 115 +++++++++++---------- 1 file changed, 60 insertions(+), 55 deletions(-) diff --git a/src/app/(steady)/steady/edit/[id]/page.tsx b/src/app/(steady)/steady/edit/[id]/page.tsx index 0b5c5548..e2218d1e 100644 --- a/src/app/(steady)/steady/edit/[id]/page.tsx +++ b/src/app/(steady)/steady/edit/[id]/page.tsx @@ -137,7 +137,9 @@ const SteadyEditPage = ({ }; return ( -
+

@@ -148,52 +150,57 @@ const SteadyEditPage = ({ my={"3"} className={cn("h-3 bg-st-gray-400")} /> - ( - - - { - field.onChange(value); - }} - /> - - - - )} - /> -
- ( - - - { - field.onChange(value); - }} - /> - - - - )} - /> -
+
+ ( + + + { + field.onChange(value); + }} + /> + + + + )} + /> + ( + + + { + field.onChange(value); + }} + /> + + + + )} + /> +
+
-
+
{ field.onChange(selected); }} @@ -226,7 +233,7 @@ const SteadyEditPage = ({ initialLabel={"진행 방식"} initialData={steadyMode} items={steadyRunningMethods} - className={cn("w-200")} + className={cn("w-full")} onSelectedChange={(selected) => { field.onChange(selected); }} @@ -246,7 +253,7 @@ const SteadyEditPage = ({ initialLabel={"스테디 정원"} initialData={participantLimit} items={steadyParticipantsLimit} - className={cn("w-200")} + className={cn("w-full")} onSelectedChange={(selected) => { field.onChange(Number(selected)); }} @@ -265,7 +272,7 @@ const SteadyEditPage = ({ { field.onChange(format(date, "yyyy-MM-dd")); }} @@ -274,20 +281,18 @@ const SteadyEditPage = ({ )} /> -
-
-
+ ( - + { field.onChange(extractValue(selected).map(Number)); }} @@ -306,7 +311,7 @@ const SteadyEditPage = ({ initialLabel={"예상 기간"} initialData={scheduledPeriod} items={steadyExpectedPeriods} - className={cn("w-200")} + className={cn("w-full")} onSelectedChange={(selected) => { field.onChange(selected); }} @@ -320,12 +325,12 @@ const SteadyEditPage = ({ defaultValue={extractValue(stacksInitialData).map(Number)} name={"stacks"} render={({ field }) => ( - + { field.onChange(extractValue(selected).map(Number)); }} @@ -344,7 +349,7 @@ const SteadyEditPage = ({ initialLabel={"상태"} initialData={status} items={steadyRecruitmentStatus} - className={cn("w-200")} + className={cn("w-full")} onSelectedChange={(selected) => { field.onChange(selected); }} From 929ad0985329bdcf26384a8ac3ef6e946bd44125 Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 17:37:07 +0900 Subject: [PATCH 11/12] =?UTF-8?q?=F0=9F=92=84=20Style(#286):=20=EB=A7=88?= =?UTF-8?q?=ED=81=AC=EB=8B=A4=EC=9A=B4=20=EC=97=90=EB=94=94=ED=84=B0=20?= =?UTF-8?q?=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(steady)/steady/create/page.tsx | 7 +++++-- src/app/(steady)/steady/edit/[id]/page.tsx | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/(steady)/steady/create/page.tsx b/src/app/(steady)/steady/create/page.tsx index 9adff7b0..7e7c9485 100644 --- a/src/app/(steady)/steady/create/page.tsx +++ b/src/app/(steady)/steady/create/page.tsx @@ -318,9 +318,12 @@ const CreateSteadyPage = () => { control={steadyForm.control} name={"content"} render={({ field }) => ( - + { unified() diff --git a/src/app/(steady)/steady/edit/[id]/page.tsx b/src/app/(steady)/steady/edit/[id]/page.tsx index 57c82aba..127c5340 100644 --- a/src/app/(steady)/steady/edit/[id]/page.tsx +++ b/src/app/(steady)/steady/edit/[id]/page.tsx @@ -428,9 +428,12 @@ const SteadyEditPage = ({ name={"content"} render={({ field }) => { return ( - + { From cbb80e8167cd9b68e350ca7acdbe8e5ed7dd69de Mon Sep 17 00:00:00 2001 From: JiYoon Date: Thu, 30 Nov 2023 18:16:20 +0900 Subject: [PATCH 12/12] =?UTF-8?q?=F0=9F=9A=A8=20Fix(#286):=20=EB=B9=8C?= =?UTF-8?q?=EB=93=9C=20=EC=97=90=EB=9F=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(steady)/steady/manage/[id]/page.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/(steady)/steady/manage/[id]/page.tsx b/src/app/(steady)/steady/manage/[id]/page.tsx index ad4c82a3..f37422cf 100644 --- a/src/app/(steady)/steady/manage/[id]/page.tsx +++ b/src/app/(steady)/steady/manage/[id]/page.tsx @@ -322,10 +322,6 @@ const SteadyManagePage = ({ params }: { params: { id: string } }) => { ), )} - - 정말 해당 멤버를 추방하시겠습니까? - -