From 7e3bd8d13faba247c6bfb5086bd321f6cd90f73b Mon Sep 17 00:00:00 2001 From: pankaj1980patel Date: Tue, 26 Sep 2023 21:52:12 +0530 Subject: [PATCH] fix(search): tapping search icon bug --- src/components/App/SideBar/index.tsx | 2 +- src/components/Icons/SearchIcon.tsx | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/App/SideBar/index.tsx b/src/components/App/SideBar/index.tsx index 7c1c9f582..9578f7e9b 100644 --- a/src/components/App/SideBar/index.tsx +++ b/src/components/App/SideBar/index.tsx @@ -73,7 +73,7 @@ const Content = forwardRef(({ onSubmit, subViewOpen }} > {!isLoading ? ( - <>{searchTerm ? : } + <>{searchTerm ? : } ) : ( )} diff --git a/src/components/Icons/SearchIcon.tsx b/src/components/Icons/SearchIcon.tsx index 2f02e5dfc..279857a0e 100644 --- a/src/components/Icons/SearchIcon.tsx +++ b/src/components/Icons/SearchIcon.tsx @@ -2,7 +2,14 @@ import React from 'react' const SearchIcon: React.FC> = (props) => ( - +