From 85a96f1076623468ecca1957c2febee7ed98f0df Mon Sep 17 00:00:00 2001 From: Polybius93 Date: Mon, 6 Jan 2025 16:22:01 +0100 Subject: [PATCH] feat: remove unnecessary logs, fix yarn lock --- src/app/components/swap/swap.tsx | 8 -- yarn.lock | 197 ++++++++++++++++--------------- 2 files changed, 101 insertions(+), 104 deletions(-) diff --git a/src/app/components/swap/swap.tsx b/src/app/components/swap/swap.tsx index 5aca305..fe9ecc2 100644 --- a/src/app/components/swap/swap.tsx +++ b/src/app/components/swap/swap.tsx @@ -1,5 +1,3 @@ -import { useEffect } from 'react'; - import { CheckCircleIcon, ChevronDownIcon, ChevronUpIcon } from '@chakra-ui/icons'; import { Button, HStack, Input, Spinner, Text, VStack } from '@chakra-ui/react'; import { useBitcoinPrice } from '@hooks/use-bitcoin-price'; @@ -39,12 +37,6 @@ export function Swap(): React.JSX.Element { const { bitcoinPrice } = useBitcoinPrice(); - useEffect(() => { - console.log('isProcessing', isProcessing); - console.log('isCompleted', isCompleted); - console.log('quoteError', quoteError); - }, [isProcessing, isCompleted, quoteError]); - return (