Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
fix: update vendor query (#2291)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTaiga committed Feb 12, 2023
1 parent b5a6486 commit eb32079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/vendor-finance/graphql/getLendingPoolsQuery.ts
Expand Up @@ -21,7 +21,7 @@ export type VendorLendingPoolsGraphResponse = {

export const lendingPoolsQuery = gql`
query getPoolsList {
pools(first: 1000, where: { _lendBalance_gt: "0", _expiry_gt: ${`${Math.floor(new Date().getTime() / 1000)}`} }) {
pools(first: 1000, where: { _expiry_gt: ${`${Math.floor(new Date().getTime() / 1000)}`} }) {
id
_deployer
_mintRatio
Expand Down

0 comments on commit eb32079

Please sign in to comment.