Fix remaining merge conflicts and linter errors

- Remove merge conflict markers from AnalyticsDashboard.tsx
- Fix merge conflicts in email/respond/route.tsx
- Use dev versions of EmailManager and ModernAdminDashboard
- Add eslint-disable for Image icon in editor
This commit is contained in:
2025-09-10 11:13:27 +02:00
parent b44250fe0e
commit 690d9e1cfb
5 changed files with 3 additions and 671 deletions

View File

@@ -66,7 +66,6 @@ interface AnalyticsDashboardProps {
export function AnalyticsDashboard({ isAuthenticated }: AnalyticsDashboardProps) {
const [data, setData] = useState<AnalyticsData | null>(null);
const [loading, setLoading] = useState(false);
>>>>>>> dev
const [error, setError] = useState<string | null>(null);
const [timeRange, setTimeRange] = useState<'7d' | '30d' | '90d' | '1y'>('30d');
const [showResetModal, setShowResetModal] = useState(false);