File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import { Divider } from '@/components/common/divider'
77import { Text } from '@/components/common/text'
88import { Card } from '@/components/shared/card'
99
10+ import { joinWithHash } from '@/utils/convertArrayToHashString'
11+
1012interface TeamRecruitmentCardProps {
1113 teamRecruitmentItem : TeamRecruitmentListItem
1214}
@@ -28,9 +30,7 @@ export const TeamRecruitmentCard = ({
2830 const { nickname, imageUrl } = writer
2931 const activeRecruitmentLabel = recruitmentStatusMap [ `${ teamIsActive } ` ]
3032 const recruitmentNumLabel = `모집인원 : ${ 1 } /${ teamRecruitmentNum } `
31- const teckStackLabel = ( teamTechStack ?? [ ] )
32- . map ( stack => `#${ stack } ` )
33- . join ( '' )
33+ const teckStackLabel = joinWithHash ( teamTechStack ?? [ ] )
3434
3535 return (
3636 < Card >
You can’t perform that action at this time.
0 commit comments