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,
DropdownOption
was generic, so we were able to type itsId
andContext
, like this:DropdownOption<UserType>
. But with Select changes, we lost this feature.Before:
Now:
We should try to restore this.
The text was updated successfully, but these errors were encountered: