From 02f702b8946c98a550aeca08585ca7bc5d6ee7f2 Mon Sep 17 00:00:00 2001 From: Dima Rifai <dima.rifai@gmail.com> Date: Thu, 23 Jan 2025 20:08:29 +0200 Subject: [PATCH] Issue #433 - Use NoResult component --- .../home/searches/searchesResults/CommentSearchResults.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/home/searches/searchesResults/CommentSearchResults.tsx b/components/home/searches/searchesResults/CommentSearchResults.tsx index 7b1cc39f..e86a3ce1 100644 --- a/components/home/searches/searchesResults/CommentSearchResults.tsx +++ b/components/home/searches/searchesResults/CommentSearchResults.tsx @@ -14,6 +14,7 @@ import useCommentSearch from "@/hooks/api/common/useCommentSearch"; import { useSearchesContext } from "@/contexts/SearchesContext"; import { getCommentPageLink } from "../utils/commentSearchHelpers"; import { usePathname } from "next/navigation"; +import NoResult from "@/components/NoResult"; const CommentSearchResults = () => { const { @@ -91,9 +92,7 @@ const CommentSearchResults = () => { /> </div> ) : ( - <div className="flex justify-center w-full text-black dark:text-white"> - No operations matching given criteria - </div> + <NoResult/> )} </> ); -- GitLab