code quality
This commit is contained in:
@@ -64,13 +64,18 @@ interface NavigatorWithConnection extends Navigator {
|
||||
};
|
||||
}
|
||||
|
||||
interface ErrorAnalyticsDashboardProps {
|
||||
refreshInterval?: number;
|
||||
showInProduction?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* Comprehensive Error Analytics Dashboard
|
||||
* Shows real-time error statistics, API metrics, and environment details
|
||||
*/
|
||||
export function ErrorAnalyticsDashboard({
|
||||
export function ErrorAnalyticsDashboard({
|
||||
refreshInterval = 5000,
|
||||
showInProduction = false
|
||||
showInProduction = false
|
||||
}: ErrorAnalyticsDashboardProps) {
|
||||
const [stats, setStats] = useState<ErrorStats | null>(null);
|
||||
const [isExpanded, setIsExpanded] = useState(true);
|
||||
|
||||
Reference in New Issue
Block a user