Skip to content

Commit

Permalink
feat: fix modal fetching items by creator along the nfts on sale (#1971)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo authored Aug 11, 2023
1 parent c053937 commit 56d4bcb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion webapp/src/modules/routing/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ function* handleConnectWalletSuccess(action: ConnectWalletSuccessAction) {
)

if (hasShownTheExpiredListingsModalBefore !== 'true') {
yield handleFetchOnSale(address, view)
yield handleFetchNFTsOnSale(address, view)
}
}

Expand Down Expand Up @@ -481,6 +481,10 @@ function* handleFetchOnSale(address: string, view: View) {
})
)

yield call(handleFetchNFTsOnSale, address, view)
}

function* handleFetchNFTsOnSale(address: string, view: View) {
yield put(
fetchNFTsRequest({
view,
Expand Down

0 comments on commit 56d4bcb

Please sign in to comment.