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