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
TS interface for toast doesn't allow for dismiss argument to be optional -
current: dismiss(toastId: number): void;
should be: dismiss(toastId?: number): void;
This would allow user to forgo using toastId and enable dismissing all active toast messages
The text was updated successfully, but these errors were encountered:
TS interface for toast doesn't allow for dismiss argument to be optional -
current:
dismiss(toastId: number): void;
should be:
dismiss(toastId?: number): void;
This would allow user to forgo using toastId and enable dismissing all active toast messages
The text was updated successfully, but these errors were encountered: