CopyErrorMessages() — supabase Function Reference
Architecture documentation for the CopyErrorMessages() function in copy-error-messages.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/copy-error-messages.tsx lines 5–24
export default function CopyErrorMessages() {
return (
<div className="flex flex-col gap-8">
<div className="flex flex-col gap-4 w-[400px]">
<span className="text-xs text-foreground-muted">Bad Example</span>
<div className="flex flex-row items-center gap-2 border border-destructive-500 rounded-md px-4 py-2 bg-destructive-200 text-destructive shadow-md">
<CircleAlert size={16} strokeWidth={1.5} />
<p className="text-sm">Something went wrong. Please try again.</p>
</div>
</div>
<div className="flex flex-col gap-4 w-[400px]">
<span className="text-xs text-foreground-muted">Good Example</span>
<div className="flex flex-row items-center gap-2 border border-destructive-500 rounded-md px-4 py-2 bg-destructive-200 text-destructive shadow-md">
<CircleAlert size={16} strokeWidth={1.5} />
<p className="text-sm">Invalid API key. Check your project settings.</p>
</div>
</div>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free