Skip to content

Commit e2d1a4a

Browse files
committed
fix : 상세 조회
1 parent d6361f0 commit e2d1a4a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

apps/entry-admin/src/components/ApplicantDetailModal.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,14 @@ export const ApplicantDetailModal = ({
153153
<InfoRow>
154154
<InfoLabel>성적</InfoLabel>
155155
<ScoreValue>
156-
{application?.scores?.totalScore ?? 0}/170
156+
{application?.scores?.totalScore ?? 0}/
157+
{application?.applicationType === 'SOCIAL'
158+
? 110
159+
: application?.applicationType === 'MEISTER'
160+
? 110
161+
: application?.applicationType === 'COMMON'
162+
? 170
163+
: '-'}
157164
</ScoreValue>
158165
</InfoRow>
159166

0 commit comments

Comments
 (0)