Skip to content

Commit

Permalink
Merge pull request #213 from jaison080/dev
Browse files Browse the repository at this point in the history
Updated
  • Loading branch information
Jagannathes authored Dec 31, 2022
2 parents d2b646c + a037bae commit 86b7e49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Components/Email/Email.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable react/jsx-no-target-blank */
function Email({ request }) {
return (
<>
Expand All @@ -18,7 +19,6 @@ function Email({ request }) {
<a
href={`https://iedc-collab-frontend.pages.dev/${request.project_id}`}
target="_blank"
rel="noreferrer"
>
{request.project}
</a>
Expand Down Expand Up @@ -55,7 +55,6 @@ function Email({ request }) {
<a
href="https://iedc-collab-frontend.pages.dev"
target="_blank"
rel="noreferrer"
>
https://iedc-collab-frontend.pages.dev
</a>
Expand All @@ -74,7 +73,7 @@ function Email({ request }) {
<p>
<i>
For any queries please visit{" "}
<a href="https://iedcmec.in">https://iedcmec.in</a>
<a href="https://iedcmec.in" target="_blank">https://iedcmec.in</a>
</i>
</p>
</div>
Expand Down
6 changes: 6 additions & 0 deletions src/Pages/Developers/Developers.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import Drawer from "./Drawer";
// import { IndeterminateCheckBox } from "@mui/icons-material";
import SuspenseLoader from "../../Components/SuspenseLoader/SuspenseLoader";
import { ProjectContext } from "../../contexts/ProjectContext";
import { Pagination } from "@mui/material";
const Developers = () => {
const [users, setUsers] = useState([]);
const { developers, loading, setSelectedDevelopers } = useContext(
Expand Down Expand Up @@ -164,7 +165,12 @@ const Developers = () => {
);
})}
</div>
<Pagination count={10} color="primary" sx={{
paddingTop:"5rem",
}} />
</div>


</div>
</MainLayout>
</>
Expand Down

0 comments on commit 86b7e49

Please sign in to comment.