diff --git a/app/src/components/ui/inputs/InputWithDropDown.tsx b/app/src/components/ui/inputs/InputWithDropDown.tsx index c6316d6..f749af7 100644 --- a/app/src/components/ui/inputs/InputWithDropDown.tsx +++ b/app/src/components/ui/inputs/InputWithDropDown.tsx @@ -52,8 +52,8 @@ const InputWithDropDown: React.FC = ({ max={max} step={step} type="number" - // defaultValue={value} - value={value} + defaultValue={value} + // value={value} onChange={(e) => { onChange(e.target.value); }}