diff --git a/src/components/image/ImageWithFallback.tsx b/src/components/image/ImageWithFallback.tsx index 95d56957..b59e3f96 100644 --- a/src/components/image/ImageWithFallback.tsx +++ b/src/components/image/ImageWithFallback.tsx @@ -34,11 +34,11 @@ export default function ImageWithFallback({ useEffect(() => { isLoadingRef.current = isLoading; }, [isLoading]); useEffect(() => { const timeout = setTimeout(() => { - // If image is still loading after 200ms, force CSS animation + // If image is still loading after 150ms, force CSS animation if (isLoadingRef.current) { setFadeFallbackTransition(true); } - }, 200); + }, 150); return () => clearTimeout(timeout); }, []);