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

add default value to fix bug
pull/7912/head
Bently 2024-08-28 12:44:06 +01:00 committed by GitHub
parent 9551f54c35
commit e725305e15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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