From 6491d8e9c62e090924886e90cfc2be51b12ade4c Mon Sep 17 00:00:00 2001 From: Jamie Hewitt Date: Wed, 19 Oct 2022 14:24:53 +0300 Subject: [PATCH] Removing logs and unused import --- src/components/Asset/RelatedAssets/index.tsx | 2 +- src/components/Home/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Asset/RelatedAssets/index.tsx b/src/components/Asset/RelatedAssets/index.tsx index 346a24a34..28359dde9 100644 --- a/src/components/Asset/RelatedAssets/index.tsx +++ b/src/components/Asset/RelatedAssets/index.tsx @@ -17,7 +17,7 @@ export default function RelatedAssets({ const [queryRelatedAssets, setQueryRelatedAssets] = useState() const modifiedSearchTerm = tags.toString().split(',').join(' OR ') + ' OR ' + owner.toLowerCase() - + console.log({ modifiedSearchTerm }) useEffect(() => { const baseParamsSales = { chainIds, diff --git a/src/components/Home/index.tsx b/src/components/Home/index.tsx index 66de8bb09..59672f9b4 100644 --- a/src/components/Home/index.tsx +++ b/src/components/Home/index.tsx @@ -1,7 +1,7 @@ import React, { ReactElement, useEffect, useState } from 'react' import Button from '@shared/atoms/Button' import Bookmarks from './Bookmarks' -import { generateBaseQuery, getFilterTerm } from '@utils/aquarius' +import { generateBaseQuery } from '@utils/aquarius' import { useUserPreferences } from '@context/UserPreferences' import { SortTermOptions } from '../../@types/aquarius/SearchQuery' import TopSales from './TopSales'