Fix missing key on tasks list

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Jonathan
2025-06-12 10:21:24 +02:00
committed by Sacha Al Himdani
parent 1f94ddba95
commit 86da13d275

View File

@@ -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) => (
<>
<Fragment key={h.label}>
<h2 className="px-6 py-3 text-sm font-medium flex items-center gap-2 bg-subtle">
<TaskStateIcon state={h.state!} />
{h.label}
@@ -102,7 +103,7 @@ export default function TasksCard({ tasks, connectionId }: Props) {
connectionId={connectionId}
/>
))}
</>
</Fragment>
))
: // Todo and Done tab simply list todos
filteredTasks?.map((task) => (