From 9a48c4a4a3f580775f8bf4c319316676c28b8de0 Mon Sep 17 00:00:00 2001
From: Dima Rifai <dima.rifai@gmail.com>
Date: Thu, 23 Jan 2025 20:08:01 +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 a046d1b5..4c7b4288 100644
--- a/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx
+++ b/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx
@@ -7,6 +7,7 @@ import CustomPagination from "@/components/CustomPagination";
 import { config } from "@/Config";
 import { useRouter } from "next/router";
 import AccountCommentPermlinkResultTable from "@/components/account/tabs/posts/AccountCommentPermlinkResultTable";
+import NoResult from "@/components/NoResult";
 
 const CommentPermlinkSearchResults = () => {
   const {
@@ -94,9 +95,7 @@ const CommentPermlinkSearchResults = () => {
           </div>
         </div>
       ) : (
-        <div className="flex justify-center w-full">
-          No permlinks matching given criteria
-        </div>
+        <NoResult/>
       )}
     </>
   );
-- 
GitLab