Props for the ErrorDisplay component.
export interface ErrorDisplayProps { error: string; detailedError: ApiError | null; onRetry: () => void; onClearPendingManga?: () => void;} Copy
export interface ErrorDisplayProps { error: string; detailedError: ApiError | null; onRetry: () => void; onClearPendingManga?: () => void;}
The main error message to display.
Optional detailed error object for technical information.
Callback to retry the matching process.
Optional
Optional callback to clear pending manga data.
Props for the ErrorDisplay component.
Source