mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-13 16:40:01 +00:00
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
This commit is contained in:
@@ -59,4 +59,7 @@ const menuItems: MenuItem[] = [
|
||||
}
|
||||
]
|
||||
|
||||
export const AdministrationView = withSideMenu("/administration", menuItems);
|
||||
const AdministrationView = withSideMenu("/administration", menuItems);
|
||||
|
||||
export default AdministrationView;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user