From c3a1cca251758486f251b8ab3ac338626dc1d29a Mon Sep 17 00:00:00 2001 From: Alexandre78R Date: Tue, 24 Jun 2025 19:17:45 +0200 Subject: [PATCH] fixed build --- frontend/src/pages/admin/[...slug].tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/admin/[...slug].tsx b/frontend/src/pages/admin/[...slug].tsx index 3a7d567d..bad3c380 100644 --- a/frontend/src/pages/admin/[...slug].tsx +++ b/frontend/src/pages/admin/[...slug].tsx @@ -22,8 +22,8 @@ const pagesMap: Record Promise> = { 'theme-colors/create': () => import('@/components/AdminLayout/Pages/Themes/ThemeCreate'), 'backup/list': () => import('@/components/AdminLayout/Pages/BackUp/BackUpList'), 'backup/create': () => import('@/components/AdminLayout/Pages/BackUp/BackUpCreate'), - 'cv/view': () => import('@/components/AdminLayout/Pages/Cv/CVView'), - 'cv/update': () => import('@/components/AdminLayout/Pages/Cv/CVUpdate'), + 'cv/view': () => import('@/components/AdminLayout/Pages/CV/CVView'), + 'cv/update': () => import('@/components/AdminLayout/Pages/CV/CVUpdate'), } const AdminPage = (): React.ReactElement | null => {