diff --git a/src/components/timeline.jsx b/src/components/timeline.jsx index 2939c8eb..7e792c4a 100644 --- a/src/components/timeline.jsx +++ b/src/components/timeline.jsx @@ -714,6 +714,13 @@ function StatusCarousel({ title, class: className, children }) { // init?.(); // }, []); + const [render, setRender] = useState(false); + useEffect(() => { + setTimeout(() => { + setRender(true); + }, 1); + }, []); + return (