From 4d1c9bcc996195eb4d2987da60f8f3b462ec579c Mon Sep 17 00:00:00 2001 From: Nate Ferrell Date: Mon, 30 Sep 2024 02:47:16 -0500 Subject: [PATCH] feat: #comment swapped to radix ui --- src/components/DeviceCustomizationForm.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/DeviceCustomizationForm.tsx b/src/components/DeviceCustomizationForm.tsx index f508447..1021b3d 100644 --- a/src/components/DeviceCustomizationForm.tsx +++ b/src/components/DeviceCustomizationForm.tsx @@ -51,7 +51,7 @@ const DeviceCustomizationForm: React.FC = ({ // Reset form setName(""); setType(""); - setGridSize(20); + setGridSize(80); setInputs([]); setOutputs([]); }; @@ -104,7 +104,7 @@ const DeviceCustomizationForm: React.FC = ({ onChange={(e) => setGridSize(Number(e.target.value))} required min="10" - max="100" + max="200" className="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50" />