From aeccff4d7627ce7726337fda995149e3ef3d7c61 Mon Sep 17 00:00:00 2001 From: Patricio Vicens Date: Mon, 6 May 2024 11:18:33 -0300 Subject: [PATCH] temp empty array tokens --- apps/web/src/scenes/UserGalleryPage/UserGalleryCollections.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/scenes/UserGalleryPage/UserGalleryCollections.tsx b/apps/web/src/scenes/UserGalleryPage/UserGalleryCollections.tsx index b5e5de6df..1db72392e 100644 --- a/apps/web/src/scenes/UserGalleryPage/UserGalleryCollections.tsx +++ b/apps/web/src/scenes/UserGalleryPage/UserGalleryCollections.tsx @@ -86,7 +86,8 @@ function UserGalleryCollections({ galleryRef, queryRef, mobileLayout }: Props) { // TODO: Change length to properly reflect virtualizedList onLoad. Some profile's onLoad function not triggering const filteredTokenIds = useMemo(() => { - return tokenIds ? tokenIds.slice(0, 1) : []; + // Temp fix for stuck loader + return tokenIds ? [] : []; }, [tokenIds]); const isAuthenticatedUsersPage = loggedInUserId === owner?.id;