mirror of
https://github.com/documenso/documenso.git
synced 2025-11-26 06:32:08 +10:00
chore: tidy up
This commit is contained in:
@ -1,3 +0,0 @@
|
||||
export default function UserDocuments() {
|
||||
return <h1>User docs</h1>;
|
||||
}
|
||||
@ -105,13 +105,7 @@ export const UsersDataTable = ({ users, perPage, page, totalPages }: UsersDataTa
|
||||
header: 'Documents',
|
||||
accessorKey: 'documents',
|
||||
cell: ({ row }) => {
|
||||
return (
|
||||
<div>
|
||||
<Link href={`/admin/users/${row.original.id}/documents`}>
|
||||
{row.original.Document.length}
|
||||
</Link>
|
||||
</div>
|
||||
);
|
||||
return <div>{row.original.Document.length}</div>;
|
||||
},
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user