diff --git a/src/app/(dashboard)/dashboard/cache/components/CachePerformance.tsx b/src/app/(dashboard)/dashboard/cache/components/CachePerformance.tsx index a5ca69c1..899173f4 100644 --- a/src/app/(dashboard)/dashboard/cache/components/CachePerformance.tsx +++ b/src/app/(dashboard)/dashboard/cache/components/CachePerformance.tsx @@ -13,7 +13,6 @@ interface CachePerformanceProps { loading?: boolean; error?: string | null; onRetry?: () => void; - stats?: null; } function HitRateBar({ hitRate, label }: { hitRate: number; label: string }) { diff --git a/src/app/(dashboard)/dashboard/cache/components/MemoryCards.tsx b/src/app/(dashboard)/dashboard/cache/components/MemoryCards.tsx index e0f37f3a..5bbae372 100644 --- a/src/app/(dashboard)/dashboard/cache/components/MemoryCards.tsx +++ b/src/app/(dashboard)/dashboard/cache/components/MemoryCards.tsx @@ -14,7 +14,6 @@ interface MemoryCardsProps { loading?: boolean; error?: string | null; onRetry?: () => void; - stats?: null | unknown; } // ─── Internal StatCard ──────────────────────────────────────────────────────── @@ -70,7 +69,7 @@ export default function MemoryCards({ error = null, onRetry, }: MemoryCardsProps) { - const t = useTranslations("Cache"); + const t = useTranslations("cache"); if (loading) { return (