From d26a6b940856dde126bc1ea7c023938675025627 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 08:45:54 +0000 Subject: [PATCH 1/2] Create draft PR for #586 From 3f0dce9cc725a8e4e95bbe0bfc1105fec24344c4 Mon Sep 17 00:00:00 2001 From: Jeongwoo Park <121204715+lurgi@users.noreply.github.com> Date: Wed, 21 Aug 2024 17:55:24 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=EB=AA=A8=EB=8B=AC=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/Dashboard/index.tsx | 42 +++++++++++++++----------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/frontend/src/pages/Dashboard/index.tsx b/frontend/src/pages/Dashboard/index.tsx index e53f8594d..b1a601d8d 100644 --- a/frontend/src/pages/Dashboard/index.tsx +++ b/frontend/src/pages/Dashboard/index.tsx @@ -1,3 +1,4 @@ +/* eslint-disable no-trailing-spaces */ import { useParams } from 'react-router-dom'; import Tab from '@components/common/Tab'; @@ -54,24 +55,31 @@ export default function Dashboard() { ))} - - - - - - - + {/* TODO: [08.21-lurgi] 현재 모달이 여러개를 컨트롤 할 수 없는 관계로 새로 렌더링 합니다. + 추후에 Modal에 id값을 부여하여 여러개의 모달을 컨트롤 할 수 있게 변경해야합니다. + 파일 맨 첫줄 주석도 삭제해야합니다. */} + {currentMenu === '지원자 관리' && ( + + + + + + + + )} - - - - - - - + {currentMenu === '불합격자 관리' && ( + + + + + + + + )}