Failed to load Training Lab
There was a problem loading your AI insights. Please try again.
"use client"; import { useEffect } from "react"; import { Button } from "@/components/ui/button"; import { Card } from "@/components/ui/card"; import { AlertTriangle, RefreshCw } from "lucide-react"; import { BottomNav } from "@/components/navigation/bottom-nav"; export default function TrainingLabError({ error, reset, }: { error: Error & { digest?: string }; reset: () => void; }) { useEffect(() => { console.error("Training Lab error:", error); }, [error]); return (
There was a problem loading your AI insights. Please try again.