1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix(removeapitokenbutton.tsx): add environment name in delete token modal (#5469)

add environment name in delete token modal
This commit is contained in:
Saeed Akasteh 2023-12-05 15:47:31 +03:30 committed by GitHub
parent b5122a74e7
commit fa9d38fc22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,6 +69,10 @@ export const RemoveApiTokenButton = ({
<li>
<strong>type</strong>: <code>{token.type}</code>
</li>
<li>
<strong>environment</strong>:{' '}
<code>{token.environment}</code>
</li>
</StyledUl>
</div>
</Dialogue>