Remove email from joinrequestedtable

This commit is contained in:
andrewwallacespeckle
2025-03-19 14:28:44 +00:00
parent f44542d409
commit acc74afd55
@@ -3,14 +3,13 @@
<LayoutTable
class="mt-2 mb-12"
:columns="[
{ id: 'name', header: 'Name', classes: 'col-span-2' },
{ id: 'email', header: 'Email', classes: 'col-span-3' },
{ id: 'name', header: 'Name', classes: 'col-span-4' },
{ id: 'createdAt', header: 'Requested at', classes: 'col-span-3' },
{ id: 'status', header: 'Status', classes: 'col-span-2' },
{
id: 'actions',
header: '',
classes: 'col-span-2 flex items-center justify-end'
classes: 'col-span-3 flex items-center justify-end'
}
]"
:items="joinRequests"
@@ -24,10 +23,6 @@
</span>
</div>
</template>
<!-- TODO: Add email -->
<template #email="">
<span class="truncate text-body-xs text-foreground">EMAIL</span>
</template>
<template #createdAt="{ item }">
<p class="text-body-xs text-foreground">
{{ formattedFullDate(item.createdAt) }}