I recently started using react-toastify and everything worked fine until I noticed this odd behavior.
Here is my code:
this.adderrorNotification('Error: Please try again!')
adderrorNotification(message){
toast.error(message, {
onClose: () => console.log('called when I close')
});
}
Up on toast onClose I see the log message 4 times. and up on manual close click the toast re-appears 4 times.
Why is this happening ? Any help Thanks