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
But then I receive the following type error on resolveFields: Types of property 'fieldA' are incompatible. Type 'undefined' is not assignable to type 'Field<string | undefined>'
Note field A does renders conditionally as desired even with the type error.
Expected Behaviour
I would assume this method of showing fields conditionally wouldn't result in any type errors considering I found this method for conditionally showing fields in the puck editor demo.
Workaround
For now I've just put @ts-ignore above resolveFields. Please let me know if there is another way of conditionally showing fields or if I did something incorrect in my implementation, thanks!
The text was updated successfully, but these errors were encountered:
Good catch @the-code-raccoon! This is is an issue with how the types for component fields are defined. It's assumed that every prop is required as a field, regardless of whether or not the prop is optional. This was okay before we had conditional fields, because it wouldn't have made sense to include a prop without a field, but doesn't make sense with dynamic fields.
Background
Current Behaviour
I have a component where I would like to show
field A
conditionally based on the value offield B
. I created a type for the component as follows:My component looks like this:
But then I receive the following type error on
resolveFields
:Types of property 'fieldA' are incompatible. Type 'undefined' is not assignable to type 'Field<string | undefined>'
Note
field A
does renders conditionally as desired even with the type error.Expected Behaviour
I would assume this method of showing fields conditionally wouldn't result in any type errors considering I found this method for conditionally showing fields in the puck editor demo.
Workaround
For now I've just put
@ts-ignore
aboveresolveFields
. Please let me know if there is another way of conditionally showing fields or if I did something incorrect in my implementation, thanks!The text was updated successfully, but these errors were encountered: