From 16e1aff16313301639c4dfe2d45184a786eae7c3 Mon Sep 17 00:00:00 2001 From: Nicolas KOKLA Date: Sat, 21 Sep 2024 16:04:29 +0200 Subject: [PATCH] Fix theme import in Layout --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 729fa9fa8..26fe12092 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,7 +12,7 @@ import Breadcrumb from '@/layouts/Breadcrumb' import { defaultColorScheme } from '@/theme/defaultColorScheme' import styled, { ThemeProvider } from 'styled-components' import StyledComponentsRegistry from '@/providers/StyledComponentsRegistry' -import theme from '@/theme/theme' +import theme from '@/theme' import GlobalStyle from './global.styles' import { useEffect } from 'react' import { init as matomoInit } from '@socialgouv/matomo-next'