diff --git a/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx b/components/home/searches/searchesResults/CommentPermlinkSearchResults.tsx
index a046d1b5b9bbc54fb9be2667480b95111c3c1e07..4c7b4288a6ee41303e81da329ddfefa4284d563a 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/>
       )}
     </>
   );