diff --git a/src/components/Project/ProjectCard.jsx b/src/components/Project/ProjectCard.jsx index 680b5966..296c1605 100644 --- a/src/components/Project/ProjectCard.jsx +++ b/src/components/Project/ProjectCard.jsx @@ -32,6 +32,9 @@ const ProjectCard = ({ projectData }) => { const getProgress = (planned, completed) => { return (completed * 100) / planned + "%"; }; + const getProgressInNumber = (planned, completed) => { + return (completed * 100) / planned ; + }; const handleClose = () => setShowModal( false ); @@ -233,8 +236,8 @@ const ProjectCard = ({ projectData }) => {