Collin Irwin
Results
1
comments of
Collin Irwin
Tried using this workaround on v9.1.3: ```typescript function performToastUpdate(toastId: React.ReactText, options: UpdateOptions) { if (toast.isActive(toastId)) { toast.update(toastId, options); return; } const removeCallback = toast.onChange((x) => { if (x.status === 'removed')...