diff --git a/src/App.tsx b/src/App.tsx index 281f84f..e3e71bc 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -25,7 +25,7 @@ function App() { } /> } /> } /> - } /> + } /> diff --git a/src/components/Dashboard.tsx b/src/components/Dashboard.tsx index 6e6d431..798a429 100644 --- a/src/components/Dashboard.tsx +++ b/src/components/Dashboard.tsx @@ -21,14 +21,16 @@ const Dashboard = () => { const { data: linkedProjects } = useLinkedProjectData(""); return ( - + + - + {renderDashboardItem("New Projects That needs Contract Linkage", unlinkedProjects, "#C00243")} {renderDashboardItem("Projects That needs To Be Published", linkedProjects, "#E1AB1A")} + ); }; diff --git a/src/components/admin/Admin.tsx b/src/components/admin/Admin.tsx index 66c5428..570da56 100644 --- a/src/components/admin/Admin.tsx +++ b/src/components/admin/Admin.tsx @@ -1,12 +1,14 @@ -import { Paper } from "@mui/material"; +import { Box, Paper } from "@mui/material"; import React from "react"; export default function Admin(){ return ( + -

hi

+ {/*

hi

*/}
+
) } \ No newline at end of file diff --git a/src/components/intranet_users/IntranetUsers.tsx b/src/components/intranet_users/IntranetUsers.tsx index 13d2427..27628ac 100644 --- a/src/components/intranet_users/IntranetUsers.tsx +++ b/src/components/intranet_users/IntranetUsers.tsx @@ -19,6 +19,7 @@ import { TablePagination, Grid, InputAdornment, + Box, } from '@mui/material'; import EditIcon from '@mui/icons-material/Edit'; import AddIcon from '@mui/icons-material/Add'; @@ -137,9 +138,9 @@ export default function IntranetUsers(){ const handleOpen = () => { setOpen(true); }; - console.log(selectedRow,"sdfhhgfdg") return( + @@ -264,5 +265,6 @@ export default function IntranetUsers(){ + ) } \ No newline at end of file diff --git a/src/components/manage_users/ManageUsers.tsx b/src/components/manage_users/ManageUsers.tsx index 6dbc13a..5005812 100644 --- a/src/components/manage_users/ManageUsers.tsx +++ b/src/components/manage_users/ManageUsers.tsx @@ -18,6 +18,7 @@ import { DialogActions, TablePagination, InputAdornment, + Box, } from '@mui/material'; import SearchIcon from '@mui/icons-material/Search'; import EditIcon from '@mui/icons-material/Edit'; @@ -138,9 +139,9 @@ export default function ManageUsers(){ const handleOpen = () => { setOpen(true); }; - console.log(selectedRow,"sdfhhgfdg") return( + @@ -273,5 +274,6 @@ export default function ManageUsers(){ + ) } \ No newline at end of file diff --git a/src/components/projects/Projects.tsx b/src/components/projects/Projects.tsx index 490a68c..0670c06 100644 --- a/src/components/projects/Projects.tsx +++ b/src/components/projects/Projects.tsx @@ -39,7 +39,8 @@ export default function Projects(){ return( - <> + + @@ -107,6 +108,7 @@ export default function Projects(){ - + + ) } \ No newline at end of file diff --git a/src/components/search/Search.tsx b/src/components/search/Search.tsx index f75b253..f57b996 100644 --- a/src/components/search/Search.tsx +++ b/src/components/search/Search.tsx @@ -1,4 +1,4 @@ -import { Button, FormControl, Grid, InputLabel, MenuItem, Paper, Select, TextField } from "@mui/material"; +import { Box, Button, FormControl, Grid, InputLabel, MenuItem, Paper, Select, TextField } from "@mui/material"; import React, { useEffect, useState } from "react"; import { postSearchList, } from "../../APIs/SearchAPIs/postSearchList"; import AdvancedFilters from "./AdvancedFilters"; @@ -51,6 +51,7 @@ export default function Search() { }; return ( + @@ -98,5 +99,6 @@ export default function Search() { {showAdvancedFilters && } + ) } \ No newline at end of file