From 86da13d275ee1e718462ce4cdf0705b4e324ba21 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 12 Jun 2025 10:21:24 +0200 Subject: [PATCH] Fix missing key on tasks list Signed-off-by: Bryan Frimin Signed-off-by: Sacha Al Himdani --- apps/console2/src/components/tasks/TasksCard.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/console2/src/components/tasks/TasksCard.tsx b/apps/console2/src/components/tasks/TasksCard.tsx index e4720328f..58bc22c47 100644 --- a/apps/console2/src/components/tasks/TasksCard.tsx +++ b/apps/console2/src/components/tasks/TasksCard.tsx @@ -15,6 +15,7 @@ import { useConfirm, useDialogRef, } from "@probo/ui"; +import { Fragment } from "react"; import { graphql, useMutation } from "react-relay"; import { useTranslate } from "@probo/i18n"; import { usePageTitle } from "@probo/hooks"; @@ -88,7 +89,7 @@ export default function TasksCard({ tasks, connectionId }: Props) { .slice(0, 2) .filter((h) => tasksPerHash.get(h.hash)?.length) .map((h) => ( - <> +

{h.label} @@ -102,7 +103,7 @@ export default function TasksCard({ tasks, connectionId }: Props) { connectionId={connectionId} /> ))} - + )) : // Todo and Done tab simply list todos filteredTasks?.map((task) => (