Skip to content

Commit

Permalink
temp empty array tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
pvicensSpacedev committed May 6, 2024
1 parent 17058fa commit aeccff4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit aeccff4

Please sign in to comment.