From 7613bc32c2ba56675eb8a975e5dd5fa23939c1d2 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Thu, 29 Jan 2026 22:28:01 -0800 Subject: [PATCH] decrease image debounce duration --- src/shared/components/image/image.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/image/image.tsx b/src/shared/components/image/image.tsx index 4502706e9..36a79106c 100644 --- a/src/shared/components/image/image.tsx +++ b/src/shared/components/image/image.tsx @@ -139,7 +139,7 @@ function ImageWithDebounce({ unloaderIcon, ...props }: ImageProps) { - const [debouncedSrc] = useDebouncedValue(src, 150, { waitForInitial: true }); + const [debouncedSrc] = useDebouncedValue(src, 100, { waitForInitial: true }); const viewport = useInViewport(); const { inViewport, ref } = enableViewport ? viewport : { inViewport: true, ref: undefined }; const { className: containerPropsClassName, ...restContainerProps } = imageContainerProps || {};