From 287a1ebb59d45682ef96dbbfa7accc2e286d5f3c Mon Sep 17 00:00:00 2001 From: Akira Date: Mon, 16 Mar 2026 16:40:06 +0900 Subject: [PATCH] =?UTF-8?q?Set=20=E3=82=A4=E3=83=86=E3=83=AC=E3=83=BC?= =?UTF-8?q?=E3=82=B7=E3=83=A7=E3=83=B3=E3=82=92=20Array.from()=20=E3=81=AB?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3:=20=E6=9C=AC=E7=95=AA=E3=83=93=E3=83=AB?= =?UTF-8?q?=E3=83=89=E3=81=AE=20TypeScript=20=E3=82=A8=E3=83=A9=E3=83=BC?= =?UTF-8?q?=E3=82=92=E8=A7=A3=E6=B6=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- frontend/src/app/distribution/_components/DeliveryEditPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/distribution/_components/DeliveryEditPage.tsx b/frontend/src/app/distribution/_components/DeliveryEditPage.tsx index 07af0a8..a4637bb 100644 --- a/frontend/src/app/distribution/_components/DeliveryEditPage.tsx +++ b/frontend/src/app/distribution/_components/DeliveryEditPage.tsx @@ -239,7 +239,7 @@ export default function DeliveryEditPage({ planId }: Props) { // 未割り当て圃場(グループに入っていない + 選択肥料のエントリがある) const unassignedFields = useMemo(() => { const result: FieldInfo[] = []; - for (const fId of relevantFieldIds) { + for (const fId of Array.from(relevantFieldIds)) { if (!allGroupFieldIds.has(fId)) { result.push(getFieldInfo(fId)); }