diff --git a/src/pages/subscription/Subscription.jsx b/src/pages/subscription/Subscription.jsx index 5c0b8aa..90ff0cf 100644 --- a/src/pages/subscription/Subscription.jsx +++ b/src/pages/subscription/Subscription.jsx @@ -615,6 +615,39 @@ function AnnouncementDetail({ item, onBookmark }) { )} + + {item.match_score !== undefined && item.match_score !== null && ( +
+
+

매칭 분석

+ + ⭐ {item.match_score} / 100 + +
+ + {item.match_reasons && item.match_reasons.length > 0 && ( +
+

💡 매칭 사유

+ +
+ )} + + {item.eligible_types && item.eligible_types.length > 0 && ( +
+

✓ 신청 자격

+
+ {item.eligible_types.map(t => ( + {t} + ))} +
+
+ )} +
+ )} ); }