0

Based on react-toastify docs consumer might call

import { toast } from 'react-toastify';
...
toast.dismiss();

to dismiss all the opened toasts on the screen. They will follow the preconfigured animation.

The question is how to dismiss them immediately without the animation.

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197

1 Answers1

0

does this help?

toast.clearWaitingQueue();
Prakash S
  • 1,695
  • 3
  • 11
  • 20