From e95f7c6dd2aa80fb661d6b9c75cf438da4d96c1c Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sat, 21 Feb 2026 00:38:49 +0100 Subject: [PATCH] fix: restore missing translations on 404 page --- app/[locale]/layout.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 76e3791d..b97dc3fa 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -81,7 +81,16 @@ export default async function Layout(props: { } // Pick only the namespaces required by client components to reduce the hydration payload size - const clientKeys = ['Footer', 'Navigation', 'Contact', 'Products', 'Team', 'Home']; + const clientKeys = [ + 'Footer', + 'Navigation', + 'Contact', + 'Products', + 'Team', + 'Home', + 'Error', + 'StandardPage', + ]; const clientMessages: Record = {}; for (const key of clientKeys) { if (messages[key]) {