Fix React error #130 - Invalid element type

- Fixed malformed JSX structure in App.tsx Routes configuration
- Added missing service exports in services/index.ts
- Added ErrorBoundary wrappers to all admin routes for consistency
- Fixed indentation and nesting issues in route definitions

This resolves the login and event creation errors.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <[email protected]>
This commit is contained in:
2025-07-07 11:19:59 +02:00
co-authored by Claude
parent 8dad933ff1
commit f75ee680a5
3 changed files with 35 additions and 30 deletions
+6 -1
View File
@@ -1,3 +1,8 @@
export { authService } from './auth.service';
export { galleryService } from './gallery.service';
export { eventsService } from './events.service';
export { eventsService } from './events.service';
export { adminService } from './admin.service';
export { analyticsService } from './analytics.service';
export { archiveService } from './archive.service';
export { emailService } from './email.service';
export { settingsService } from './settings.service';