From c8face15efafc838a5a366ba1bf7dd06a5549abe Mon Sep 17 00:00:00 2001 From: Minsu Kim Date: Thu, 10 Oct 2024 22:23:10 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EC=B6=9C=EC=97=B0=EC=A7=84=20?= =?UTF-8?q?=EC=A0=95=EB=B3=B4=20=EB=93=B1=EB=A1=9D=ED=95=98=EA=B8=B0=20?= =?UTF-8?q?=EB=8D=B0=EC=8A=A4=ED=81=AC=ED=83=91=20=EC=8A=A4=ED=83=80?= =?UTF-8?q?=EC=9D=BC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ShowInfoFormContent/ShowInfoFormContent.styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/admin/src/components/ShowInfoFormContent/ShowInfoFormContent.styles.ts b/apps/admin/src/components/ShowInfoFormContent/ShowInfoFormContent.styles.ts index e0d53a64..da0a2fe6 100644 --- a/apps/admin/src/components/ShowInfoFormContent/ShowInfoFormContent.styles.ts +++ b/apps/admin/src/components/ShowInfoFormContent/ShowInfoFormContent.styles.ts @@ -553,7 +553,7 @@ const MobileCastInfoRegisterButton = styled.button` const DesktopCastInfoRegisterButton = styled(Button)` display: none; ${mq_lg} { - display: block; + display: flex; } `; From 84afd3f96f9d7079985b64644b61a06de9bcb04b Mon Sep 17 00:00:00 2001 From: Minsu Kim Date: Thu, 10 Oct 2024 22:29:34 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EB=B2=84=ED=8A=BC=20=EB=B9=84?= =?UTF-8?q?=ED=99=9C=EC=84=B1=20=EC=A1=B0=EA=B1=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/ShowCastInfoFormDialogContent/index.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/admin/src/components/ShowCastInfoFormDialogContent/index.tsx b/apps/admin/src/components/ShowCastInfoFormDialogContent/index.tsx index 5461cf97..b0b4204a 100644 --- a/apps/admin/src/components/ShowCastInfoFormDialogContent/index.tsx +++ b/apps/admin/src/components/ShowCastInfoFormDialogContent/index.tsx @@ -61,11 +61,8 @@ const ShowCastInfoFormDialogContent = ({ onDelete, prevShowCastInfo, onSave }: P (getFieldState('members').isTouched && controlledFields.some( ({ userImgPath, userNickname, roleName }, index) => - !userImgPath || - !userNickname || - !roleName || - isMemberFieldBlurred[index].roleName || - isMemberFieldBlurred[index].userCode, + (isMemberFieldBlurred[index].roleName || isMemberFieldBlurred[index].userCode) && + (!userImgPath || !userNickname || !roleName), )); return (