Skip to content

Commit

Permalink
Merge pull request #212 from Nexters/fix/cast-info-button
Browse files Browse the repository at this point in the history
fix: 출연진 정보 등록하기 데스크탑 스타일 수정
  • Loading branch information
alstn2468 authored Oct 10, 2024
2 parents 6a21c4b + 84afd3f commit b9cb0eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ const MobileCastInfoRegisterButton = styled.button`
const DesktopCastInfoRegisterButton = styled(Button)`
display: none;
${mq_lg} {
display: block;
display: flex;
}
`;

Expand Down

0 comments on commit b9cb0eb

Please sign in to comment.