fix: hide DisplaySigit actions
All checks were successful
Open PR on Staging / audit_and_check (pull_request) Successful in 51s

Closes #246
This commit is contained in:
en 2025-02-18 18:38:54 +01:00
parent 0834e52316
commit 08b13c291b

View File

@ -112,6 +112,9 @@ export const DisplaySigit = ({
</> </>
)} )}
</div> </div>
{
// TODO: enable buttons once feature is ready
false && (
<div className={styles.itemActions}> <div className={styles.itemActions}>
<Tooltip title="Duplicate" arrow placement="top" disableInteractive> <Tooltip title="Duplicate" arrow placement="top" disableInteractive>
<Button <Button
@ -138,6 +141,8 @@ export const DisplaySigit = ({
</Button> </Button>
</Tooltip> </Tooltip>
</div> </div>
)
}
</div> </div>
) )
} }