Skip to content

Commit

Permalink
chore: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanNeiverth committed Dec 2, 2024
1 parent 4cc0973 commit 65b7216
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions packages/cow-hooks-ui/src/hooks/usePools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,6 @@ const USER_POOLS_QUERY = gql`
stakingId
}
}
poolTokens {
id
address
name
decimals
symbol
balance
balanceUSD
weight
}
}
}
`;
Expand Down Expand Up @@ -129,7 +119,6 @@ export function usePools(
orderBy,
})
.then((result) => {
console.log("QUERY RESULT", result.pools);
return result.pools.map((pool) => ({
...pool,
userBalance: {
Expand Down

0 comments on commit 65b7216

Please sign in to comment.