feat: implement custom project data image

This commit is contained in:
Carlos Valente
2025-07-11 18:42:09 +02:00
parent d8c1c38123
commit 138c6523d2
13 changed files with 130 additions and 116 deletions
@@ -1,6 +1,7 @@
export enum RefetchKey {
All = 'all',
CustomFields = 'custom-fields',
ProjectData = 'project-data',
Report = 'report',
Rundown = 'rundown',
ViewSettings = 'view-settings',
@@ -4,5 +4,5 @@ export type ProjectData = {
url: string;
info: string;
logo: string | null;
custom: { title: string; value: string }[];
custom: { title: string; value: string; url: string }[];
};