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]) {