Fix React error #130 - Resolve component import issues

- Fixed wildcard exports in common/index.ts with explicit named exports
- Fixed GalleryView import path in GalleryPage.tsx
- Fixed ToastContainer props formatting in App.tsx
- Ensured all components are properly exported and imported

This should finally resolve the invalid element type error.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-07-07 12:56:09 +02:00
parent f75ee680a5
commit 9dd643338b
3 changed files with 22 additions and 15 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import { format, differenceInDays, parseISO } from 'date-fns';
import { Card, CardContent, Input, Button, Loading } from '../components/common';
import { useGalleryAuth } from '../contexts';
import { useGalleryInfo } from '../hooks/useGallery';
import { GalleryView } from '../components/gallery/GalleryView';
import { GalleryView } from '../components/gallery';
import { analyticsService } from '../services/analytics.service';
export const GalleryPage: React.FC = () => {