From 19c557a15467e1a9aec08cf97ea3088b9fe3edff Mon Sep 17 00:00:00 2001 From: DevOps Date: Sun, 28 Jun 2026 17:25:03 +0000 Subject: [PATCH] fix: add id field to Project interface to resolve TS error --- src/app/types/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/types/types.ts b/src/app/types/types.ts index d029a40..3ad8677 100644 --- a/src/app/types/types.ts +++ b/src/app/types/types.ts @@ -252,6 +252,7 @@ export interface Image { } export interface Project { + id: number; title: string; category: string; images: Image[];