Skip to content

Commit

Permalink
(fix) Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lilchizh committed Nov 1, 2023
1 parent f01a3ec commit 64f935f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/swap/MarketDepthChart/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface MarketDepthChartProps {

const MarketDepthChart = ({ currencyA, currencyB, isOpen, close }: MarketDepthChartProps) => {

const { toggledTrade: trade, tickAfterSwap, tickSpacing } = useDerivedSwapInfo();
const { tickAfterSwap, tickSpacing } = useDerivedSwapInfo();

const { [SwapField.LIMIT_ORDER_PRICE]: limitOrderPrice } = useSwapState()

Expand Down
2 changes: 1 addition & 1 deletion src/state/swapStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useBestTradeExactIn, useBestTradeExactOut } from "@/hooks/swap/useBestT
import useSwapSlippageTolerance from "@/hooks/swap/useSwapSlippageTolerance"
import { SwapField, SwapFieldType } from "@/types/swap-field"
import { TradeStateType } from "@/types/trade-state"
import { ADDRESS_ZERO, Currency, CurrencyAmount, Percent, Position, TickMath, Trade, TradeType, ZERO, computePoolAddress, tickToPrice, tryParsePrice } from "@cryptoalgebra/integral-sdk"
import { ADDRESS_ZERO, Currency, CurrencyAmount, Percent, Position, TickMath, Trade, TradeType, ZERO, computePoolAddress } from "@cryptoalgebra/integral-sdk"
import JSBI from "jsbi"
import { useCallback, useMemo } from "react"
import { parseUnits } from "viem"
Expand Down

0 comments on commit 64f935f

Please sign in to comment.