Skip to content

Commit

Permalink
fix: remove not working user sorts options
Browse files Browse the repository at this point in the history
  • Loading branch information
yolile committed Sep 19, 2023
1 parent a38e5d0 commit 193ca88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/UserList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const headCells: HeadCell<ExtendendUser>[] = [
id: 'name',
disablePadding: false,
label: t('Full Name'),
sortable: true,
sortable: false,
},
{
id: 'email',
Expand All @@ -34,21 +34,21 @@ const headCells: HeadCell<ExtendendUser>[] = [
id: 'type',
disablePadding: false,
label: t('Type'),
sortable: true,
sortable: false,
render: (row: ExtendendUser) => renderUserType(row.type),
},
{
id: 'lender_name',
disablePadding: false,
label: t('Lender'),
sortable: true,
sortable: false,
},
{
id: 'created_at',
type: 'date',
disablePadding: false,
label: t('Created At'),
sortable: true,
sortable: false,
},
];

Expand Down

0 comments on commit 193ca88

Please sign in to comment.