Compare commits

..

1 Commits

Author SHA1 Message Date
7fd8c9cd99 Flag tentative stsatus with a yellow icon
Some checks failed
Playwright Tests / test (pull_request) Has been cancelled
Check usage of free licenses / build-static-assets (pull_request) Has been cancelled
Build Nginx-based docker image / build-static-assets (pull_request) Has been cancelled
2024-10-27 19:28:43 +01:00

View File

@ -21,7 +21,7 @@ export type Guest = {
name: string;
email: string;
group_name: string;
status: 'Considered' | 'Invited' | 'Confirmed' | 'Declined';
status: 'Considered' | 'Invited' | 'Confirmed' | 'Declined' | 'Tentative';
}
export type Group = {