svelte-toasts
svelte-toasts copied to clipboard
Fix not being able to make more toasts at the same time.
Creating more toasts at the same time didn't work because uid of them was the same (Date.now()).
I have changed it to be a counter, so it is still unique, but not dependent on when called.