Skip to content

Commit

Permalink
fix: correct variable checked
Browse files Browse the repository at this point in the history
  • Loading branch information
ipapandinas committed Feb 21, 2022
1 parent 92830a0 commit 8fe10f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/services/gqlQueriesBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ countTotalFilteredNFTs = (query: getTotalFilteredNFTsQuery, seriesId?: string) =
priceEndRange !== undefined
? `priceRounded: {
${priceStartRange!==undefined ? `greaterThanOrEqualTo: ${priceStartRange}` : ""}
${priceStartRange!==undefined ? `lessThanOrEqualTo: ${priceEndRange}` : ""}
${priceEndRange!==undefined ? `lessThanOrEqualTo: ${priceEndRange}` : ""}
}`
: ""
}
Expand Down

0 comments on commit 8fe10f0

Please sign in to comment.