From 193ca8805246e34600ef93ebca27aee7dfd60fb8 Mon Sep 17 00:00:00 2001 From: Yohanna Lisnichuk Date: Tue, 19 Sep 2023 18:37:51 -0400 Subject: [PATCH] fix: remove not working user sorts options --- src/components/UserList.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/UserList.tsx b/src/components/UserList.tsx index f98a11d..2abcdf0 100644 --- a/src/components/UserList.tsx +++ b/src/components/UserList.tsx @@ -22,7 +22,7 @@ const headCells: HeadCell[] = [ id: 'name', disablePadding: false, label: t('Full Name'), - sortable: true, + sortable: false, }, { id: 'email', @@ -34,21 +34,21 @@ const headCells: HeadCell[] = [ 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, }, ];