diff --git a/components/DefaultLayout.tsx b/components/DefaultLayout.tsx index 3440cf2470e0..a88f2bd228ec 100644 --- a/components/DefaultLayout.tsx +++ b/components/DefaultLayout.tsx @@ -11,7 +11,7 @@ import { useTranslation } from './hooks/useTranslation' type Props = { children?: React.ReactNode } export const DefaultLayout = (props: Props) => { - const { builtAssets, page, error, isHomepageVersion } = useMainContext() + const { page, error, isHomepageVersion } = useMainContext() const { t } = useTranslation('errors') return (
@@ -22,8 +22,6 @@ export const DefaultLayout = (props: Props) => { {page.fullTitle} ) : null} -