refactor: fixes to custom field

This commit is contained in:
Carlos Valente
2025-07-11 16:49:41 +02:00
parent 4d419c0877
commit d8c1c38123
20 changed files with 103 additions and 108 deletions
@@ -1,7 +1,7 @@
export type CustomFieldKey = string;
export type CustomField = {
type: 'string' | 'image';
type: 'text' | 'image';
colour: string;
label: string;
};