diff --git a/apps/admin/src/pages/Students/index.tsx b/apps/admin/src/pages/Students/index.tsx index d9ccbd5..df29523 100644 --- a/apps/admin/src/pages/Students/index.tsx +++ b/apps/admin/src/pages/Students/index.tsx @@ -17,6 +17,8 @@ import { Col, Card, Drawer, + Tabs, + Descriptions, } from 'antd'; import { PlusOutlined, @@ -82,11 +84,8 @@ const StudentsPage: React.FC = () => { const [archivedCount, setArchivedCount] = useState(0); const [selectedRowKeys, setSelectedRowKeys] = useState([]); const [enrollmentData, setEnrollmentData] = useState>({}); - const [form] = Form.useForm(); const [drawerOpen, setDrawerOpen] = useState(false); - const [drawerStudentId, setDrawerStudentId] = useState(null); const [drawerData, setDrawerData] = useState(null); - const [drawerLoading, setDrawerLoading] = useState(false); const openDrawer = async (studentId: number) => { setDrawerStudentId(studentId);