Set イテレーションを Array.from() に修正: 本番ビルドの TypeScript エラーを解消
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user