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
in TypeScript file index.d.ts, interface MultiSelectProps property onValuesChange?(item: OptionValue): void;
is uncorrect.
The following fix works: onValuesChange?(items: OptionValue[]): void;
The text was updated successfully, but these errors were encountered:
in TypeScript file index.d.ts, interface MultiSelectProps property
onValuesChange?(item: OptionValue): void;
is uncorrect.
The following fix works:
onValuesChange?(items: OptionValue[]): void;
The text was updated successfully, but these errors were encountered: