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
Typescript is complaining that the type is still Nullable<string> instead of string
It appears that autoConfig is trying to figure out what the type is based upon default, but if there is no default then it presumes it can be Nullable even thought required is set to `true.
When running tests, at runtime we receive the following error as well:
ERROR: Found 1 Config Problem(s)!
Fix the following 1 issue(s). (tip: try '--help' output for more details.)
- Required: KEY invalid_type
This error is resolved by adding default: '' to the config
The text was updated successfully, but these errors were encountered:
Nullable<string>
instead ofstring
autoConfig
is trying to figure out what the type is based upondefault
, but if there is nodefault
then it presumes it can beNullable
even thoughtrequired
is set to `true.When running tests, at runtime we receive the following error as well:
This error is resolved by adding
default: ''
to the configThe text was updated successfully, but these errors were encountered: