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
Recommended - Check out the discussions area before opening a new issue.
Is your feature request related to a problem? Please describe.
When passing UploadyProps, the current types only allow either for a value to not exist (marked by ?), or for it to have a value which isn't undefined.
Is your feature request related to a problem? Please describe.
When passing UploadyProps, the current types only allow either for a value to not exist (marked by ?), or for it to have a value which isn't undefined.
this means, that code that wraps Uploady with custom props, can't be written like this:
because Typescript will complain with
TS2375
thatType undefined is not assignable to type string
Instead, we must resort to this:
Describe the solution you'd like
Change the UploadyProps to:
The text was updated successfully, but these errors were encountered: