Skip to content

Commit

Permalink
πŸ”€ Merge #2040 into deploy/rinkeby
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Jan 27, 2025
2 parents 72ffa5f + 000f397 commit 36cacf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/modules/nft.js
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ const actions = {
key: res.pagination.next_key,
reverse: true,
});
classes = await promise;
classes = classes.concat(await promise);
commit(TYPES.NFT_SET_USER_CREATED_CLASSES_MAP, {
address,
classesOrPromise: classes.map(formatNFTClassInfo),
Expand Down Expand Up @@ -853,7 +853,7 @@ const actions = {
nocache,
reverse: true,
});
classes = await promise;
classes = classes.concat(await promise);
commit(TYPES.NFT_SET_USER_COLLECTED_CLASSES_MAP, {
address,
classesOrPromise: classes.map(formatNFTClassInfo),
Expand Down

0 comments on commit 36cacf8

Please sign in to comment.