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(() => {
|
React.useEffect(() => {
|
||||||
if (toastData.life === "born") {
|
if (toastData.life === "born") {
|
||||||
|
setTimeout(() => {
|
||||||
toasts[id] = {
|
toasts[id] = {
|
||||||
...toasts[id],
|
...toasts[id],
|
||||||
life: "normal",
|
life: "normal",
|
||||||
};
|
};
|
||||||
notifySingle(id);
|
notifySingle(id);
|
||||||
|
}, 5 /* transition not working on fast toast creation with small timeout value */);
|
||||||
}
|
}
|
||||||
if (toastData.life === "normal" && toastData.closeTimeout !== null) {
|
if (toastData.life === "normal" && toastData.closeTimeout !== null) {
|
||||||
const timeout = setTimeout(() => {
|
const timeout = setTimeout(() => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user