diff --git a/src/frontend/src/components/floatComponent/index.tsx b/src/frontend/src/components/floatComponent/index.tsx index 3470cc137..979f55aba 100644 --- a/src/frontend/src/components/floatComponent/index.tsx +++ b/src/frontend/src/components/floatComponent/index.tsx @@ -40,11 +40,7 @@ export default function FloatComponent({ value={value ?? ""} disabled={disabled} className={editNode ? "input-edit-node" : ""} - placeholder={ - editNode - ? `Enter a value between ${min} and ${max}` - : `Enter a value between ${min} and ${max}` - } + placeholder={`Enter a value`} onChange={(event) => { onChange(event.target.value); }}