Skip to content

Commit

Permalink
Show total certificates count 🧮
Browse files Browse the repository at this point in the history
  • Loading branch information
wotschofsky committed Dec 1, 2024
1 parent 1b468fe commit 9c5ef88
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion app/lookup/[domain]/certs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,15 @@ const CertsResultsPage: FC<CertsResultsPageProps> = async (props) => {
);
}

return <CertsTable certs={certs} />;
return (
<>
<CertsTable certs={certs} />

<p className="mt-8 text-center text-muted-foreground">
Found {certs.length} certificates.
</p>
</>
);
};

export default CertsResultsPage;

0 comments on commit 9c5ef88

Please sign in to comment.