chore(web): temporarily disable delete buttons

This commit is contained in:
isra el
2024-03-29 06:54:08 +03:00
parent ab7dc291dc
commit 74dded86c0
2 changed files with 2 additions and 1 deletions

View File

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

View File

@@ -30,6 +30,7 @@ const DeviceRow = ({ device, onDelete }: any) => {
aria-label='Delete'
icon={<DeleteIcon />}
onDoubleClick={onDelete}
disabled
/>
</Tooltip>
</Td>