Skip to content

Commit

Permalink
QUIPU-38: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Digberi committed May 24, 2022
1 parent 27cffba commit deefd09
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/modules/swap/swap-send.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable no-console */
import { FC, useCallback, useEffect, useMemo, useRef } from 'react';

import BigNumber from 'bignumber.js';
Expand Down Expand Up @@ -391,11 +390,6 @@ const OrdinarySwapSend: FC<SwapSendProps> = ({ className, initialAction }) => {
const submitDisabled = !isEmptyArray(Object.keys(errors));

const title = `${t('swap|Swap')} ${getTokensOptionalPairName(inputToken, outputToken)}`;
console.log({ dexRoute });
console.log({ inputToken });
console.log({ outputToken });
console.log({ inputAmount });
console.log({ outputAmount });
const noRouteFound = !dexRoute && inputToken && outputToken && (inputAmount || outputAmount);
const shouldShowPriceImpactWarning = priceImpact?.gt(PRICE_IMPACT_WARNING_THRESHOLD);

Expand Down

0 comments on commit deefd09

Please sign in to comment.