react-redux-toastr icon indicating copy to clipboard operation
react-redux-toastr copied to clipboard

If I have one confirm and I fire another it isn`t ignored.

Open 13barra13 opened this issue 1 year ago • 0 comments
trafficstars

If I have one confirm and I fire another it isnt ignored. New one rewrites message but doesnt touch custom okText. E.G.

toastr.confirm("111111",
                    {
                        okText: "1111111"
                    }
                );
                setTimeout(() => {
                    toastr.confirm("22222",
                    {
                        okText: "22222"
                    }
                )
                }, 100)

result toastr: chrome_2wmNir8CqY

13barra13 avatar May 16 '24 09:05 13barra13