This resolves a bug around the booleans and conditional types. Apparently booleans are a union type of true | false and when a boolean is used with a generic and a conditional it gets split into the individual value types... This fix makes adds a special case for a boolean value type in the FormControl to cover this edge case.
This resolves a bug around the booleans and conditional types. Apparently booleans are a union type of
true | false
and when a boolean is used with a generic and a conditional it gets split into the individual value types... This fix makes adds a special case for a boolean value type in the FormControl to cover this edge case.