From 0f740f70a3b3854363ea8f652c44328081947d0b Mon Sep 17 00:00:00 2001 From: Dima Rifai <dima.rifai@gmail.com> Date: Thu, 23 Jan 2025 12:50:38 +0200 Subject: [PATCH] Issue #433 - Use NoResult component --- .../searchesResults/CommentPermlinkSearchResults.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx b/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx index e7c30fb2..341422e3 100644 --- a/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx +++ b/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx @@ -3,6 +3,7 @@ import CommentPermlinkResultTable from "../CommentPermlinkResultTable"; import { useSearchesContext } from "@/contexts/SearchesContext"; import { getCommentPageLink } from "../utils/commentSearchHelpers"; import PostTypeSelector from "../PostTypeSelector"; +import NoResults from "@/components/NoResults"; const CommentPermlinkSearchResults = () => { const { @@ -62,9 +63,7 @@ const CommentPermlinkSearchResults = () => { </div> </div> ) : ( - <div className="flex justify-center w-full"> - No permlinks matching given criteria - </div> + <NoResults/> )} </> ); -- GitLab