fix: add timeout on born transition of toast to handle faster toast creation
This commit is contained in:
parent
3a710abe4c
commit
f4f931b0f4
@ -170,11 +170,13 @@ const ToastTemplate = ({
|
||||
|
||||
React.useEffect(() => {
|
||||
if (toastData.life === "born") {
|
||||
toasts[id] = {
|
||||
...toasts[id],
|
||||
life: "normal",
|
||||
};
|
||||
notifySingle(id);
|
||||
setTimeout(() => {
|
||||
toasts[id] = {
|
||||
...toasts[id],
|
||||
life: "normal",
|
||||
};
|
||||
notifySingle(id);
|
||||
}, 5 /* transition not working on fast toast creation with small timeout value */);
|
||||
}
|
||||
if (toastData.life === "normal" && toastData.closeTimeout !== null) {
|
||||
const timeout = setTimeout(() => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user