blob: cfcfdd8359a03a68cff3e7042941d61f48067e3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { DirectiveWithProgress } from "../../lib/api";
export function VerifiersTab({ directive: _directive }: { directive: DirectiveWithProgress }) {
// TODO: Fetch verifiers separately
return (
<div className="text-center py-8">
<p className="font-mono text-sm text-[#556677]">
Verifiers will be shown here. Use auto-detect to find available verifiers.
</p>
</div>
);
}
|