Fixed err in undef arrays

This commit is contained in:
MaxOvs19
2023-12-06 18:26:47 +03:00
parent 585604d0b9
commit f98e788201
4 changed files with 10 additions and 10 deletions

View File

@ -18,7 +18,7 @@ const ArchiveTableTracker = ({ filterCompleteTasks, loader }) => {
{!loader && (
<>
{Boolean(filterCompleteTasks.length) ? (
filterCompleteTasks.map((task, index) => {
filterCompleteTasks?.map((task, index) => {
return (
<ArchiveTasksItem task={task} index={index} key={index} />
);