We use antd in our react project. We saw for some reason they were showing up multiple times on a single event click. We were able to solve it using a config options for the message function.
message.config({maxCount: 1});
This is what you will be needing basically.
Top comments (0)