From 01c8b5d22baf0974548af5a7732efaee25d09938 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sun, 27 Apr 2025 17:28:45 -0500 Subject: [PATCH] Speed up image fallback cache checks --- src/components/image/ImageWithFallback.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/image/ImageWithFallback.tsx b/src/components/image/ImageWithFallback.tsx index d3a17a67..319de3fd 100644 --- a/src/components/image/ImageWithFallback.tsx +++ b/src/components/image/ImageWithFallback.tsx @@ -38,7 +38,7 @@ export default function ImageWithFallback({ Boolean(imgRef.current?.complete) && (imgRef.current?.naturalWidth ?? 0) > 0, ), - 100, + 50, ); return () => clearTimeout(timeout); }, []);