fix: add id field to Project interface to resolve TS error

This commit is contained in:
DevOps 2026-06-28 17:25:03 +00:00
parent 34243ff641
commit 19c557a154

View File

@ -252,6 +252,7 @@ export interface Image {
}
export interface Project {
id: number;
title: string;
category: string;
images: Image[];