reviewing pull request 🇯🇲

This commit is contained in:
Will Holcomb
2021-07-18 08:48:04 -04:00
committed by dan13ram
parent 2601b12476
commit ce4d42b6d2
4 changed files with 12 additions and 28 deletions

View File

@@ -47,7 +47,7 @@ export const useOpenSeaCollectibles = ({
if (collectiblesFavorites.length > 0 && owner) {
const favoritesQuery = {
owner,
token_ids: collectiblesFavorites.map(({ tokenId }) => tokenId ?? ''),
token_ids: collectiblesFavorites.map(({ tokenId }) => tokenId || ''),
};
const [favoritesData, allData] = await Promise.all([
fetchOpenSeaData(favoritesQuery),