removed unused code

This commit is contained in:
Pramod Mahajan 2025-05-04 18:59:18 +05:30
parent e86d43c6e9
commit 4b9f5d737a

View File

@ -88,15 +88,6 @@ const ProjectCard = ({ projectData }) => {
}
};
const handleModify = async (e) => {
e.stopPropagation(); // prevent event bubbling
setLoading(true);
try {
await handleShow(); // call your API or async function
} finally {
setLoading(false);
}
};
return (
<>