Fixes circuits bluescreening whenever you try to put text or numbers into a STRING or ANY type field (#95946)

## About The Pull Request

Closes #95865 

## Changelog
🆑
fix: Fixed circuits bluescreening whenever you try to put text or
numbers into a STRING or ANY type field
/🆑
This commit is contained in:
SmArtKar
2026-04-30 16:31:36 +02:00
committed by GitHub
parent 56c336ec76
commit 441ead6883
@@ -17,7 +17,7 @@ export const FUNDAMENTAL_DATA_TYPES = {
<Input
placeholder={name}
value={value}
onChange={setValue}
onChange={(value) => setValue(value)}
width="96px"
/>
</BasicInput>
@@ -121,7 +121,7 @@ export const FUNDAMENTAL_DATA_TYPES = {
<Input
placeholder={name}
value={value}
onChange={setValue}
onChange={(value) => setValue(value)}
width="64px"
/>
</Stack.Item>