Remove references to the user email
All checks were successful
Check usage of free licenses / build-static-assets (pull_request) Successful in 9m13s
Add copyright notice / copyright_notice (pull_request) Successful in 15m54s
Playwright Tests / test (pull_request) Successful in 11m26s

This commit is contained in:
Manuel Bustillo 2024-11-03 10:39:02 +01:00
parent 3b5d0918cd
commit 7c0cd76198
2 changed files with 0 additions and 16 deletions

View File

@ -21,15 +21,6 @@ export type Customer = {
export type Guest = {
id: string;
name: string;
email?: string;
group_name?: string;
status?: 'Considered' | 'Invited' | 'Confirmed' | 'Declined' | 'Tentative';
}
export type Banana = {
id: string;
name: string;
email?: string;
group_name?: string;
status?: 'Considered' | 'Invited' | 'Confirmed' | 'Declined' | 'Tentative';
}

View File

@ -19,7 +19,6 @@ export default function guestsTable() {
return ({
id: record.id,
name: record.attributes.name,
email: record.attributes.email,
group_name: record.attributes.group_name,
status: record.attributes.status
});
@ -64,9 +63,6 @@ export default function guestsTable() {
<th scope="col" className="px-6 py-3">
Name
</th>
<th scope="col" className="px-6 py-3">
Email
</th>
<th scope="col" className="px-6 py-3">
Group
</th>
@ -82,9 +78,6 @@ export default function guestsTable() {
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
{guest.name}
</th>
<td className="px-6 py-4">
{guest.email}
</td>
<td className="px-6 py-4">
{guest.group_name}
</td>