cleanup 7
continuous-integration/drone/pr Build is failing

This commit is contained in:
2026-07-03 20:22:26 -04:00
parent 457eb550e4
commit 1ff96ee9c8
24 changed files with 258 additions and 273 deletions
+7 -1
View File
@@ -7,6 +7,7 @@ import type { User } from '../generated/model';
import { AddIcon, DeleteIcon } from '../icons';
import { useMutationWithToast } from '../hooks/useMutationWithToast';
import { useToasts } from '../components/ToastContext';
import { formatDate } from '../utils/formatters';
import { dataForStatus } from '../utils/apiResponses';
interface AddUserFormProps {
@@ -238,7 +239,12 @@ export default function AdminUsersPage() {
</div>
),
},
{ id: 'created', header: 'Created', className: 'w-48', render: user => user.created_at },
{
id: 'created',
header: 'Created',
className: 'w-48',
render: user => formatDate(user.created_at),
},
];
if (isLoading) {