fix(builder): Set default value in NodeStringInput to silence uncontrolled input warning (#7909)

add default value to fix bug
This commit is contained in:
Bently
2024-08-28 12:44:06 +01:00
committed by GitHub
parent 9551f54c35
commit e725305e15

View File

@@ -522,7 +522,7 @@ const NodeStringInput: FC<{
}> = ({
selfKey,
schema,
value,
value = "",
error,
handleInputChange,
handleInputClick,