From 4b504a5dce123fb23666051beccdb6b4772e6f86 Mon Sep 17 00:00:00 2001 From: Dennis Konkol Date: Fri, 5 Sep 2025 23:09:41 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20ESLint=20any=20type=20erro?= =?UTF-8?q?r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed 'as any' to 'as Record' in prisma.ts - Pre-push hook now passes all checks ✅ --- lib/prisma.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/prisma.ts b/lib/prisma.ts index cbc5ab5..daeebe7 100644 --- a/lib/prisma.ts +++ b/lib/prisma.ts @@ -73,7 +73,7 @@ export const projectService = { ...data, performance: data.performance || { lighthouse: 90, bundleSize: '50KB', loadTime: '1.5s' }, analytics: data.analytics || { views: 0, likes: 0, shares: 0 } - } as any + } as Record }); },