Fix syntax error

Commas are not needed here
This commit is contained in:
Eden Reich 2024-09-08 19:33:20 +02:00 committed by GitHub
parent 5b9758c0f1
commit 44353478ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,8 +1,8 @@
interface Project {
title: string,
description: string,
href?: string,
imgSrc?: string,
title: string
description: string
href?: string
imgSrc?: string
}
const projectsData: Project[] = [