Skip to content

Commit

Permalink
removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
vsubhuman committed Jun 19, 2024
1 parent d65e1ed commit 0aedc41
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ export default function SwapFormProvider({ swapStore, children }: Props): Node {
// on token pair changes
useEffect(() => {
if (sellTokenId != null && buyTokenId != null && sellTokenId !== buyTokenId) {
console.log('fetching pools for pair: ', sellTokenId, buyTokenId);
pools.list.byPair({ tokenA: sellTokenId, tokenB: buyTokenId })
.then(poolsArray => poolPairsChanged(poolsArray))
.catch(err => console.error(`Failed to fetch pools for pair: ${sellTokenId}/${buyTokenId}`, err));
Expand Down

0 comments on commit 0aedc41

Please sign in to comment.