diff --git a/packages/react/components/Toast.tsx b/packages/react/components/Toast.tsx index 92e292a..3a1063f 100644 --- a/packages/react/components/Toast.tsx +++ b/packages/react/components/Toast.tsx @@ -51,7 +51,7 @@ interface ToastBody extends Omit, "preset"> { } let index = 0; -let toasts: Record< +const toasts: Record< `${number}`, ToastBody & Partial & { subscribers: (() => void)[] } > = {}; @@ -161,7 +161,7 @@ const ToastTemplate = ({ subscribeSingle(id)(() => { setToast(getSingleSnapshot(id)()); }); - }, []); + }, [id]); const toastData = { ...globalOption, @@ -225,7 +225,7 @@ const ToastTemplate = ({ }, calculatedTransitionDuration); return () => clearTimeout(timeout); } - }, [toastData.life, toastData.closeTimeout, toastData.closeButton]); + }, [id, toastData.life, toastData.closeTimeout, toastData.closeButton]); return (
((props, ref) => { const internalRef = useRef(null); useEffect(() => { - const unsubscribe = subscribe(() => { + return subscribe(() => { setToastList(getSnapshot()); }); - return unsubscribe; }, []); const option = React.useMemo(() => {