diff --git a/apps/infoalloggi/src/components/tables/users-table.tsx b/apps/infoalloggi/src/components/tables/users-table.tsx index 878d11b..c80334e 100644 --- a/apps/infoalloggi/src/components/tables/users-table.tsx +++ b/apps/infoalloggi/src/components/tables/users-table.tsx @@ -154,12 +154,7 @@ export const UsersTable = (props: { data: UserWChatInfo[] }) => { /> ), }, - { - accessorKey: "email", - header: ({ column }) => ( - - ), - }, + { accessorKey: "telefono", header: ({ column }) => ( @@ -169,6 +164,12 @@ export const UsersTable = (props: { data: UserWChatInfo[] }) => { /> ), }, + { + accessorKey: "email", + header: ({ column }) => ( + + ), + }, { accessorKey: "created_at", cell: ({ row }) => { @@ -372,7 +373,7 @@ export const UsersTable = (props: { data: UserWChatInfo[] }) => { email: true, telefono: true, isAdmin: true, - isBanned: false, + isBlocked: false, username: true, }} defaultSort={[{ desc: true, id: "created_at" }]}