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
If we are not already exporting the new types from index, we should export them, like we do for other component types
Previously, DropdownOption was generic, so we were able to type its Id and Context, like this: DropdownOption<UserType>. But with Select changes, we lost this feature.
If we are not already exporting the new types from
index, we should export them, like we do for other component typesPreviously,
DropdownOptionwas generic, so we were able to type itsIdandContext, like this:DropdownOption<UserType>. But with Select changes, we lost this feature.Before:
Now:
We should try to restore this.