diff --git a/src/pages/my-profile/index.tsx b/src/pages/my-profile/index.tsx index 60b531b..7986733 100644 --- a/src/pages/my-profile/index.tsx +++ b/src/pages/my-profile/index.tsx @@ -43,7 +43,7 @@ export default function MyProfileDetailPage() { return applications.map((app: ApiResponse) => { const a = app.item; const status = - a.status === 'accepted' ? 'approved' : a.status === 'rejected' ? 'rejected' : 'pending'; + a.status === 'accepted' ? 'accepted' : a.status === 'rejected' ? 'rejected' : 'pending'; return { id: a.id,