🔧 Fix ESLint any type error

- Changed 'as any' to 'as Record<string, unknown>' in prisma.ts
- Pre-push hook now passes all checks 
This commit is contained in:
Dennis Konkol
2025-09-05 23:09:41 +00:00
parent 62ef4deb4f
commit 4b504a5dce

View File

@@ -73,7 +73,7 @@ export const projectService = {
...data, ...data,
performance: data.performance || { lighthouse: 90, bundleSize: '50KB', loadTime: '1.5s' }, performance: data.performance || { lighthouse: 90, bundleSize: '50KB', loadTime: '1.5s' },
analytics: data.analytics || { views: 0, likes: 0, shares: 0 } analytics: data.analytics || { views: 0, likes: 0, shares: 0 }
} as any } as Record<string, unknown>
}); });
}, },