Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoYhun committed Sep 22, 2023
1 parent cfb6bbf commit a90aacb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/pages/TrueSightV2/components/SwitchVariantDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export default function SwitchVariantDropdown({
const { chain, address } = useKyberAIAssetOverview()
useOnClickOutside(ref, () => setShow(false))
const variant = variants?.find(item => item.address.toLowerCase() === address && item.chain.toLowerCase() === chain)
console.log('🚀 ~ file: SwitchVariantDropdown.tsx:87 ~ variant:', variant)
if (!variant && isLoading) {
return (
<SkeletonTheme
Expand Down
1 change: 0 additions & 1 deletion src/pages/TrueSightV2/pages/SingleToken.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ const TokenDescription = ({ description }: { description: string }) => {
const theme = useTheme()
const [show, setShow] = useState(true)
const [isTextExceeded, setIsTextExceeded] = useState(false)
console.log('🚀 ~ file: SingleToken.tsx:191 ~ TokenDescription ~ isTextExceeded:', isTextExceeded)

const ref = useCallback(
(el: HTMLDivElement) => {
Expand Down

0 comments on commit a90aacb

Please sign in to comment.