From 1c9813ebc96326d19e7dceafecc74cd43521add8 Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Thu, 22 Jan 2026 21:04:57 +0200 Subject: [PATCH] fix(Image): update return renderFallback type --- src/components/Image/Image.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Image/Image.tsx b/src/components/Image/Image.tsx index e64078fbc..5c7a93c00 100644 --- a/src/components/Image/Image.tsx +++ b/src/components/Image/Image.tsx @@ -7,7 +7,7 @@ type Props = { src: string, alt: string, fallbackSrc: string, - renderFallback: () => void, + renderFallback: () => React.ReactNode, onError: (event: React.SyntheticEvent) => void, };