1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

fix compute jobs infinite loading when no jobs found

This commit is contained in:
Bogdan Fazakas 2022-04-29 13:17:06 +03:00
parent 72bf0da6c5
commit 3ef91048b3

View File

@ -287,6 +287,7 @@ export async function getComputeJobs(
)
})
if (tokenOrders.length === 0) {
computeResult.isLoaded = true
return computeResult
}