You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ui): prevent unknown props from leaking to DOM in CodeEditorField (#269)
Remove `extends React.ComponentPropsWithoutRef<'div'>` and spread props
pattern that was causing unknown props (like contractSchema, adapter)
to leak to the DOM element, triggering React warnings.
The component now explicitly defines only the props it needs, making it
more defensive and app-agnostic.
0 commit comments