diff --git a/interface/app/$libraryId/Explorer/FilePath/Thumb.tsx b/interface/app/$libraryId/Explorer/FilePath/Thumb.tsx index 6a76dd8b4..0f43d9464 100644 --- a/interface/app/$libraryId/Explorer/FilePath/Thumb.tsx +++ b/interface/app/$libraryId/Explorer/FilePath/Thumb.tsx @@ -259,10 +259,7 @@ const Thumbnail = forwardRef( ) { useEffect(() => { initialized.current = false; - }, [explorerSettings?.gridItemSize]); + }, [explorerSettings?.gridItemSize, explorerSettings?.listViewIconSize]); useCallbackToWatchResize( ({ width, height }) => { - if (initialized.current) return; + if (initialized.current || (!width && !height)) return; setSize({ width, height }); initialized.current = true; },