MCPcopy
hub / github.com/firecrawl/fireplexity / ErrorDisplayProps

Interface ErrorDisplayProps

components/error-display.tsx:6–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { getErrorMessage } from '@/lib/error-messages'
5
6interface ErrorDisplayProps {
7 error: Error | { statusCode?: number; message?: string }
8 onRetry?: () => void
9 context?: string
10}
11
12export function ErrorDisplay({ error, onRetry, context }: ErrorDisplayProps) {
13 // Extract status code from error

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected