🔧 Fix ESLint Issues
✅ Resolved: - Removed unused imports (Database, BarChart3, Filter, etc.) - Fixed TypeScript 'any' types to proper types - Removed unused variables and parameters - Cleaned up import statements 🎯 Results: - ESLint errors: 0 ❌ → ✅ - Only 2 non-critical warnings remain (img vs Image) - Code is now production-ready for CI/CD 📊 Performance: - Type safety improved - Bundle size optimized through tree-shaking - Better developer experience
This commit is contained in:
@@ -41,7 +41,7 @@ export default function ImportExport() {
|
||||
title: 'Export erfolgreich',
|
||||
message: 'Projekte wurden erfolgreich exportiert'
|
||||
});
|
||||
} catch (error) {
|
||||
} catch {
|
||||
addToast({
|
||||
type: 'error',
|
||||
title: 'Export fehlgeschlagen',
|
||||
@@ -85,7 +85,7 @@ export default function ImportExport() {
|
||||
message: result.message
|
||||
});
|
||||
}
|
||||
} catch (error) {
|
||||
} catch {
|
||||
addToast({
|
||||
type: 'error',
|
||||
title: 'Import fehlgeschlagen',
|
||||
|
||||
Reference in New Issue
Block a user