From 9414807248fe573efe4d23ce2dcdaa967e51f0ca Mon Sep 17 00:00:00 2001 From: skalthoff <32023561+skalthoff@users.noreply.github.com> Date: Sat, 15 Nov 2025 10:04:26 -0800 Subject: [PATCH] fix: simplify conditional rendering of ItemBlurhash in Image component (#682) --- src/components/Global/components/image.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/Global/components/image.tsx b/src/components/Global/components/image.tsx index 6d13b718..004591b1 100644 --- a/src/components/Global/components/image.tsx +++ b/src/components/Global/components/image.tsx @@ -137,9 +137,7 @@ function Image({ return ( - (!isLoaded && ( - - )) + {!isLoaded && }