Skip to content

Commit e30fe71

Browse files
Merge pull request #272 from decentraland/fix/only-minting-where
fix: only minting WHERE statement
2 parents 16d928b + 1a7222d commit e30fe71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ports/catalog/queries.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ export const getOnlyMintingWhere = () => {
359359
}
360360

361361
export const getOnlyMintingWhereWithTrades = () => {
362-
return SQL`(items.search_is_store_minter = true AND available > 0) OR (offchain_orders.count IS NOT NULL)`
362+
return SQL`((items.search_is_store_minter = true AND available > 0) OR (offchain_orders.count IS NOT NULL))`
363363
}
364364

365365
export const getIdsWhere = (filters: CatalogFilters) => {

0 commit comments

Comments
 (0)