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

Interface GracefulErrorProps

components/graceful-error.tsx:8–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import Link from 'next/link'
7
8interface GracefulErrorProps {
9 error: Error & { digest?: string; statusCode?: number }
10 reset?: () => void
11}
12
13export function GracefulError({ error, reset }: GracefulErrorProps) {
14 const statusCode = error.statusCode || 500

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected