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

모임안내 모집대상 chip QA 반영 #926

Merged
merged 1 commit into from
Oct 11, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const InformationPanel = ({ detailData }: InformationPanelProps) => {
{
id: 3,
title: '모집 대상',
generation: detailData?.canJoinOnlyActiveGeneration ? '활동 기수' : '전체',
generation: detailData?.canJoinOnlyActiveGeneration ? '활동 기수' : '전체 기수',
partList: detailData?.joinableParts?.map(key => PART_NAME[key]),
//'이런 사람을 찾아요' Input이 사라지면서 해당 객체의 content는 삭제 됨
//렌더링은 되어야하므로 truthy값으로 문자열 'NULL'을 삽입
Expand Down Expand Up @@ -150,8 +150,10 @@ const SDescription = styled('p', {

const STarget = styled(SDescription, {
display: 'flex',
alignItems: 'center',
gap: '$10',
color: '$gray10',
flexWrap: 'wrap',

mb: '$24',

Expand Down
Loading