From 9f03e6eb0bba8b3f57ca1447feed509aecf87a67 Mon Sep 17 00:00:00 2001 From: csgaikwad Date: Fri, 30 Aug 2024 17:37:31 +0530 Subject: [PATCH 1/3] fixed the search result zIndex issue --- src/components/search/SearchBar.tsx | 2 +- tsconfig.json | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/search/SearchBar.tsx b/src/components/search/SearchBar.tsx index 678e69925..112a87958 100644 --- a/src/components/search/SearchBar.tsx +++ b/src/components/search/SearchBar.tsx @@ -116,7 +116,7 @@ const SearchBar = ({ onCardClick }: { onCardClick?: () => void }) => { {/* Search Results */} {isInputFocused && searchTerm.length > 0 && ( -
+
{renderSearchResults()}
)} diff --git a/tsconfig.json b/tsconfig.json index cec286f06..1f308869a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,14 +16,14 @@ "incremental": true, "plugins": [ { - "name": "next", - }, + "name": "next" + } ], "paths": { "@/*": ["./src/*"], - "@public/*": ["./public/*"], - }, + "@public/*": ["./public/*"] + } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"], + "exclude": ["node_modules"] } From ed9832b4e3b2d67ef4193eb997f8fad001c1cf10 Mon Sep 17 00:00:00 2001 From: csgaikwad Date: Fri, 30 Aug 2024 18:08:10 +0530 Subject: [PATCH 2/3] fixed search result issue From 79fa2a164326c571c5784132a49551e48f3d79d1 Mon Sep 17 00:00:00 2001 From: Shekhar <131723143+csgaikwad@users.noreply.github.com> Date: Fri, 30 Aug 2024 18:12:11 +0530 Subject: [PATCH 3/3] revert tsconfig.json --- tsconfig.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 1f308869a..cec286f06 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,14 +16,14 @@ "incremental": true, "plugins": [ { - "name": "next" - } + "name": "next", + }, ], "paths": { "@/*": ["./src/*"], - "@public/*": ["./public/*"] - } + "@public/*": ["./public/*"], + }, }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], }