From 29aee6b236cdf0ff97e9e28395dacf50638f0045 Mon Sep 17 00:00:00 2001 From: ThyeeZz Date: Fri, 27 Dec 2024 17:30:42 +0800 Subject: [PATCH] update average length limits --- src/parts/sizing/formSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parts/sizing/formSection.tsx b/src/parts/sizing/formSection.tsx index a619fda9..1d0fc8c4 100644 --- a/src/parts/sizing/formSection.tsx +++ b/src/parts/sizing/formSection.tsx @@ -90,7 +90,7 @@ export default function FormSection(props: { const handleAverageLengthChange = (e: any) => { const length = Number(e.target.value) || 0; - if (length >= 10000000) { + if (length >= 60000000) { return; } setForm({ @@ -250,7 +250,7 @@ export default function FormSection(props: { - [0, 10,000,000] + [0, 60,000,000]