mirror of
https://github.com/LukeHagar/firecamp.git
synced 2025-12-06 12:27:44 +00:00
chore: temp column commented in pending invitation table
This commit is contained in:
@@ -27,7 +27,7 @@ const columns = [
|
|||||||
width: '180px',
|
width: '180px',
|
||||||
},
|
},
|
||||||
{ id: 'role', name: 'Role', key: 'role', width: '115px', fixedWidth: true },
|
{ id: 'role', name: 'Role', key: 'role', width: '115px', fixedWidth: true },
|
||||||
{ id: 'action', name: '', key: '', width: '35px', fixedWidth: true },
|
// { id: 'action', name: '', key: '', width: '35px', fixedWidth: true },
|
||||||
];
|
];
|
||||||
|
|
||||||
const RoleOptions = [
|
const RoleOptions = [
|
||||||
@@ -135,17 +135,17 @@ const PendingInviteMembersTab = ({ members = [], isFetchingMembers = false }) =>
|
|||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
case 'action':
|
// case 'action':
|
||||||
return (
|
// return (
|
||||||
<div className="px-2">
|
// <div className="px-2">
|
||||||
<VscTrash
|
// <VscTrash
|
||||||
size={14}
|
// size={14}
|
||||||
className="text-error cursor-pointer"
|
// className="text-error cursor-pointer"
|
||||||
onClick={() => onRemoveMember(row)}
|
// onClick={() => onRemoveMember(row)}
|
||||||
/>
|
// />
|
||||||
</div>
|
// </div>
|
||||||
);
|
// );
|
||||||
break;
|
// break;
|
||||||
default:
|
default:
|
||||||
return column.key;
|
return column.key;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user