diff --git a/frontend/studio-root/pages/PageLayout/PageLayout.tsx b/frontend/studio-root/pages/PageLayout/PageLayout.tsx index 862de6f6dd5..4724ab1acfe 100644 --- a/frontend/studio-root/pages/PageLayout/PageLayout.tsx +++ b/frontend/studio-root/pages/PageLayout/PageLayout.tsx @@ -1,13 +1,16 @@ import React from 'react'; import { Outlet } from 'react-router-dom'; import { StudioPageHeader } from '@studio/components/'; +import { useTranslation } from 'react-i18next'; export const PageLayout = () => { + const { t } = useTranslation(); + return ( <> - +