diff --git a/src/features/my-page/ui/profile-card.tsx b/src/features/my-page/ui/profile-card.tsx index f5c831fb..b6cca706 100644 --- a/src/features/my-page/ui/profile-card.tsx +++ b/src/features/my-page/ui/profile-card.tsx @@ -70,7 +70,22 @@ export default function ProfileCard(props: ProfileCardProps) {

-

{applicant.answer}

+ {applicant.interviewPost.map((q) => { + const matchedAnswer = applicant.answer.find((a) => a.id === q.id); + + return ( +
+

+ {q.id}. {q.question} +

+ +

+ {matchedAnswer?.answer ?? '—'} +

+
+ ); + })} +