diff --git a/src/screens/AdminDashboard/UserTable/PaginationTable/Row/Row.tsx b/src/screens/AdminDashboard/UserTable/PaginationTable/Row/Row.tsx index 178e79e..bfe7f87 100644 --- a/src/screens/AdminDashboard/UserTable/PaginationTable/Row/Row.tsx +++ b/src/screens/AdminDashboard/UserTable/PaginationTable/Row/Row.tsx @@ -8,8 +8,6 @@ import Image from "next/image"; function Row({ row, currentSemester, onClick }: RowProps) { const { id, firstName, lastName, email, phoneNumber, image, emailVerified } = row; - //console.log(row.tenures); - console.log(row); const { department, role, project, status, notes } = !!row.tenures[currentSemester] && row.tenures[currentSemester]; const { url } = useContext(DashboardContext);