Looking better

This commit is contained in:
Roman Krček
2025-06-21 21:35:52 +02:00
parent a135c5ac36
commit b6d9b8df44
6 changed files with 69 additions and 31 deletions

View File

@@ -5,16 +5,16 @@ export enum ScanState {
}
export type TicketData = {
id: string;
name: string;
surname: string;
email: string;
event: string;
created_at: string;
created_by: string | null;
scanned: boolean;
scanned_at: string | null;
scanned_by: string | null;
id: string;
name: string;
surname: string;
email: string;
event: { id: string; name: string };
created_at: string;
created_by: { id: string; display_name: string } | null;
scanned: boolean;
scanned_at: string | null;
scanned_by: { id: string; display_name: string } | null;
};
export const defaultTicketData: TicketData = {