Midday / apps /dashboard /src /components /tables /api-keys /empty-state.tsx
Jules
Final deployment with all fixes and verified content
c09f67c
export function EmptyState() {
return (
<div className="flex flex-col items-center justify-center h-[300px] border border-border">
<h3>No API keys found</h3>
<p className="text-sm text-muted-foreground">
No API keys have been created for this team yet.
</p>
</div>
);
}