removed conole error

This commit is contained in:
pramod.mahajan 2025-11-18 18:28:38 +05:30
parent e276836653
commit ed87e3f11b
3 changed files with 5 additions and 5 deletions

View File

@ -95,7 +95,7 @@ const ServiceProjectProfile = () => {
<li className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */} <li className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */}
<li className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */} <a className="d-flex justify-content-center mt-4"> {/* Added mt-4 for some top margin */}
<button <button
type="button" type="button"
@ -107,7 +107,7 @@ const ServiceProjectProfile = () => {
Modify Details Modify Details
</button> </button>
</li> </a>
</li> </li>
</ul> </ul>

View File

@ -52,7 +52,7 @@ const ServiceProjectDisplay = ({ listView ,selectedStatuses }) => {
<p>List</p> <p>List</p>
) : ( ) : (
filteredProjects?.map((project) => ( filteredProjects?.map((project) => (
<ServiceProjectCard project={project} isCore={false} /> <ServiceProjectCard key={project.id} project={project} isCore={false} />
)) ))
)} )}

View File

@ -83,7 +83,7 @@ const ProjectPage = () => {
<div className="card cursor-pointer mb-5"> <div className="card cursor-pointer mb-5">
<div className="card-body py-3 px-6 pb-1"> <div className="card-body py-3 px-6 pb-1">
<div className="d-flex flex-wrap justify-content-between align-items-start"> <div className="d-flex flex-wrap justify-content-between align-items-center">
{/* LEFT SIDE — DATE TOGGLE BUTTONS */} {/* LEFT SIDE — DATE TOGGLE BUTTONS */}
<div className="mb-2"> <div className="mb-2">
<div className="d-inline-flex border rounded-pill overflow-hidden shadow-none"> <div className="d-inline-flex border rounded-pill overflow-hidden shadow-none">
@ -179,7 +179,7 @@ const ProjectPage = () => {
{HasManageProject && ( {HasManageProject && (
<button <button
type="button" type="button"
className="btn btn-primary btn-sm d-flex align-items-center" className="btn btn-primary btn-sm d-flex align-items-center my-2"
onClick={() => onClick={() =>
coreProjects coreProjects
? setMangeProject({ isOpen: true, Project: null }) // Organization Project Infra ? setMangeProject({ isOpen: true, Project: null }) // Organization Project Infra