Fixed project card

This commit is contained in:
MaxOvs19
2023-11-07 16:37:03 +03:00
parent e0da5ed74a
commit b0049cbd7e
3 changed files with 18 additions and 6 deletions

View File

@ -197,7 +197,7 @@ export const Tracker = () => {
!loader &&
projects.map((project, index) => {
return project.status !== 10 ? (
<ProjectTiket key={index} project={project}></ProjectTiket>
<ProjectTiket key={index} project={project} />
) : (
""
);
@ -452,7 +452,7 @@ export const Tracker = () => {
{Boolean(filterCompleteTasks.length) ? (
filterCompleteTasks.map((task, index) => {
return (
<tr>
<tr key={index}>
<td className="archive__completeTask__description">
<p className="completeTask__title">
{task.title}