Skip to content

Commit

Permalink
[fix] 마이 체크인 페이지에서 수요지식회 신청의 처리 현황이 올바르게 표시되지 않는 문제 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jjongs2 committed Sep 5, 2023
1 parent 8304f56 commit 7e7c3a4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions components/status/Status.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import STATUS from '@/constants/status';
import CATEGORIES from '@/constants/categories';
import STATUS, { PRESENTATION_STATUS } from '@/constants/status';
import TIMES from '@/constants/times';
import type FormInfo from '@/interfaces/FormInfo';
import { ROOM_INFOS } from '@/pages/conference-rooms/form';
Expand Down Expand Up @@ -141,7 +142,9 @@ export default function Status({
'relative -top-12 right-3 h-[24px] w-max whitespace-nowrap rounded-xl px-2 text-sm text-gray-700 dark:text-gray-300',
)}
>
{STATUS[status.status]}
{category === CATEGORIES.presentation
? PRESENTATION_STATUS[status.status]
: STATUS[status.status]}
</div>
)}
</div>
Expand Down

0 comments on commit 7e7c3a4

Please sign in to comment.