diff --git a/src/components/image/ImageWithFallback.tsx b/src/components/image/ImageWithFallback.tsx index b59e3f96..f67fe62e 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 150ms, force CSS animation + // If image is still loading after 100ms, force CSS animation if (isLoadingRef.current) { setFadeFallbackTransition(true); } - }, 150); + }, 100); return () => clearTimeout(timeout); }, []);