From 5b0ae2a842e7625d1446f223cb991b63f4bffbec Mon Sep 17 00:00:00 2001 From: akash-codemonk <67054171+akash-codemonk@users.noreply.github.com> Date: Tue, 29 Aug 2023 11:04:09 +0530 Subject: [PATCH] fix: omnibar design (#26613) --- .../src/components/editorComponents/GlobalSearch/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/client/src/components/editorComponents/GlobalSearch/index.tsx b/app/client/src/components/editorComponents/GlobalSearch/index.tsx index a9a4624b07..b800901908 100644 --- a/app/client/src/components/editorComponents/GlobalSearch/index.tsx +++ b/app/client/src/components/editorComponents/GlobalSearch/index.tsx @@ -449,8 +449,8 @@ function GlobalSearch() { }; const showDescription = useMemo(() => { - return isMenu(category) && query; - }, [category, query]); + return false; + }, []); const activeItemType = useMemo(() => { return activeItem ? getItemType(activeItem) : undefined;