From bec422726bb82eb56533cbc1ad26c16abdb1ecbf Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Wed, 27 May 2026 22:06:45 -0300 Subject: [PATCH] fix(logs): correct CompressionLogTab i18n namespace settings->logs (B/F5) The component was calling useTranslations("settings") which would cause key misses once the settings namespace is reorganized. Keys used (loading, compressionLogTitle, compressionLogEmpty, tokens) are now sourced from the canonical "logs" namespace. --- src/app/(dashboard)/dashboard/logs/CompressionLogTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/(dashboard)/dashboard/logs/CompressionLogTab.tsx b/src/app/(dashboard)/dashboard/logs/CompressionLogTab.tsx index fafd577750..7dd8e6ae02 100644 --- a/src/app/(dashboard)/dashboard/logs/CompressionLogTab.tsx +++ b/src/app/(dashboard)/dashboard/logs/CompressionLogTab.tsx @@ -24,7 +24,7 @@ interface LogEntry { } export default function CompressionLogTab() { - const t = useTranslations("settings"); + const t = useTranslations("logs"); const [logs, setLogs] = useState([]); const [loading, setLoading] = useState(true);