chore(web): temporarily hide delete buttons

This commit is contained in:
isra el
2024-03-29 07:11:58 +03:00
parent b02c345d5f
commit 62ee62859f
2 changed files with 4 additions and 4 deletions

View File

@@ -33,11 +33,11 @@ const ApiKeyRow = ({ apiKey }: any) => {
<Td>{apiKey.apiKey}</Td>
<Td>{apiKey.status}</Td>
<Td>
<Tooltip label='Double Click to delete'>
{/* <Tooltip label='Double Click to delete'>
<DeleteIcon
// onDoubleClick={handleDelete}
/>
</Tooltip>
</Tooltip> */}
</Td>
</Tr>
)

View File

@@ -25,13 +25,13 @@ const DeviceRow = ({ device, onDelete }: any) => {
<Td>{enabled ? 'enabled' : 'disabled'}</Td>
<Td>{/* <EmailIcon onDoubleClick={(e) => {}} /> */}</Td>
<Td>
<Tooltip label='Double Click to delete'>
{/* <Tooltip label='Double Click to delete'>
<IconButton
aria-label='Delete'
icon={<DeleteIcon />}
// onDoubleClick={onDelete}
/>
</Tooltip>
</Tooltip> */}
</Td>
</Tr>
)