Skip to content

Commit 56ced06

Browse files
committed
#21 [CHORE] 자잘한 오류 수정
1 parent 6472f83 commit 56ced06

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/pages/goal/GoalDetail.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,14 @@ const GoalDetail = () => {
3434
긴급: pr4,
3535
};
3636

37-
const userIconMap = IcDummyProfile; // '담당자' 속성 아이콘 매핑 (나중에 API로부터 받아온 데이터로 대체 예정)
37+
// '담당자' 속성 아이콘 매핑 (나중에 API로부터 받아온 데이터로 대체 예정)
38+
const userIconMap = {
39+
담당자: IcDummyProfile,
40+
없음: IcDummyProfile,
41+
전채운: IcDummyProfile,
42+
전시현: IcDummyProfile,
43+
};
44+
3845
// const dateIconMap = IcDate; // '기한' 속성 아이콘 매핑
3946
// const issueIconMap = IcIssue; // '이슈' 속성 아이콘 매핑
4047

@@ -95,7 +102,7 @@ const GoalDetail = () => {
95102
<PropertyItem
96103
defaultValue="담당자"
97104
options={['없음', '전채운', '전시현']}
98-
iconMap={{ 담당자: userIconMap }}
105+
iconMap={userIconMap}
99106
/>
100107
</div>
101108

0 commit comments

Comments
 (0)