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 ( 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; } `;