When using `toast.promise`, there is a subtle animation when the spinner is replaced by the checkmark icon. https://github.com/user-attachments/assets/0fe24378-ed57-43d1-a969-c94aa883aabb I would expect the same animation when using `toast.loading` and replacing it with `toast,success`, like so: ```js const toastId = toast.loading('Loading…'); setTimeout(() => { toast.success('Loaded.', { id: toastId }); }, 1500); ``` Currently, doing it this way does not play the animation: https://github.com/user-attachments/assets/81ad7d54-d468-4f12-86e7-a83679ec5885
When using
toast.promise, there is a subtle animation when the spinner is replaced by the checkmark icon.CleanShot.2026-02-17.at.15.04.39.mp4
I would expect the same animation when using
toast.loadingand replacing it withtoast,success, like so:Currently, doing it this way does not play the animation:
CleanShot.2026-02-17.at.15.03.09.mp4