From 140fbc8122a0e64a04ca28d5798ea90494e10346 Mon Sep 17 00:00:00 2001 From: Codex Date: Tue, 19 May 2026 16:17:04 +0300 Subject: [PATCH] fix(logistics): pass group.id instead of group object to onSelectSet --- src/components/logistics/LogisticsReadinessBoard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/logistics/LogisticsReadinessBoard.jsx b/src/components/logistics/LogisticsReadinessBoard.jsx index e2afd7c..45558eb 100644 --- a/src/components/logistics/LogisticsReadinessBoard.jsx +++ b/src/components/logistics/LogisticsReadinessBoard.jsx @@ -92,7 +92,7 @@ export const LogisticsReadinessBoard = ({ orderGroups = [], onSelectSet, statusO className="w-full rounded-[24px] border border-[var(--color-border)] bg-[var(--color-surface-strong)] p-4 !text-left !text-[var(--color-text)] transition hover:bg-[var(--color-accent-soft)] sm:p-5" onClick={() => { if (onSelectSet) { - onSelectSet(group); + onSelectSet(group.id); } }} type="button"