diff --git a/src/common/components/entry-list-item/entry-list-item-thumbnail.tsx b/src/common/components/entry-list-item/entry-list-item-thumbnail.tsx
index 0914d676fd5..6037cc2a78c 100644
--- a/src/common/components/entry-list-item/entry-list-item-thumbnail.tsx
+++ b/src/common/components/entry-list-item/entry-list-item-thumbnail.tsx
@@ -16,14 +16,14 @@ interface Props {
export function EntryListItemThumbnail({ entry, noImage, isCrossPost, entryProp, history }: Props) {
const { global } = useMappedStore();
- const { data: imgGrid } = useImageDownloader(
+ const { data: imgGrid, isLoading: isGridLoading } = useImageDownloader(
entry,
noImage,
600,
500,
global.listStyle === "grid"
);
- const { data: imgRow } = useImageDownloader(
+ const { data: imgRow, isLoading: isRowLoading } = useImageDownloader(
entry,
noImage,
260,
@@ -38,7 +38,7 @@ export function EntryListItemThumbnail({ entry, noImage, isCrossPost, entryProp,
{global.listStyle === "grid" ? (
{
const target = e.target as HTMLImageElement;
@@ -51,8 +51,8 @@ export function EntryListItemThumbnail({ entry, noImage, isCrossPost, entryProp,