From b33e2e00cc37967fe27921e09550c23928bf803a Mon Sep 17 00:00:00 2001 From: Railway Agent Date: Sun, 7 Jun 2026 16:14:29 +0000 Subject: [PATCH] Fix AdministrationView missing default export ## Problem\nThe Vite build is failing with:\n\n\nThis is causing the entire build to fail because Vite requires all view components to have a default export.\n\n## Solution\nAdded a default export to . The component was already being created and exported as a named export, but Vite's build process requires a default export for route components.\n\n## Changes\n- Added to \n --- app/src/main/frontend/views/AdministrationView.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/src/main/frontend/views/AdministrationView.tsx b/app/src/main/frontend/views/AdministrationView.tsx index d120b1e..79251f2 100644 --- a/app/src/main/frontend/views/AdministrationView.tsx +++ b/app/src/main/frontend/views/AdministrationView.tsx @@ -59,4 +59,7 @@ const menuItems: MenuItem[] = [ } ] -export const AdministrationView = withSideMenu("/administration", menuItems); \ No newline at end of file +const AdministrationView = withSideMenu("/administration", menuItems); + +export default AdministrationView; +