Fixed the error "project not found" in daily task planning

This commit is contained in:
ashutosh.nehete 2025-04-08 14:58:00 +05:30
parent ce40105ae5
commit 23486cbec6

View File

@ -49,7 +49,7 @@ const InfraPlanning = () =>
{!project_listLoader && projects?.filter(project => {!project_listLoader && projects?.filter(project =>
LoggedUser?.projects?.map(Number).includes(project.id)).map((project)=>( LoggedUser?.projects?.map(Number).includes(project.id)).map((project)=>(
<option value={project.id}>{project.name}</option> <option key={project.id} value={project.id}>{project.name}</option>
))} ))}
</select> </select>
</div> </div>