Refactor: Remove unnecessary value rendering in EmptyParameterComponent (#4955)

This commit is contained in:
anovazzi1 2024-12-05 13:53:29 -03:00 committed by GitHub
commit f7ac4d5345
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,5 +7,5 @@ export function EmptyParameterComponent({
handleOnNewValue,
disabled,
}: InputProps) {
return <div id={id}>{String(value)}</div>;
return <div id={id}></div>;
}