diff --git a/app/lookup/[domain]/certs/page.tsx b/app/lookup/[domain]/certs/page.tsx index 037d74b..968fff3 100644 --- a/app/lookup/[domain]/certs/page.tsx +++ b/app/lookup/[domain]/certs/page.tsx @@ -46,7 +46,15 @@ const CertsResultsPage: FC = async (props) => { ); } - return ; + return ( + <> + + +

+ Found {certs.length} certificates. +

+ + ); }; export default CertsResultsPage;