1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-19 01:17:18 +02:00

fix: missing space in delete project message (#7771)

This commit is contained in:
Mateusz Kwasniewski 2024-08-06 14:11:37 +02:00 committed by GitHub
parent 440c2b6661
commit 41c6d06093
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ export const ApiTokenDocs = () => {
}; };
const clientApiUrl = `${uiConfig.unleashUrl}/api/`; const clientApiUrl = `${uiConfig.unleashUrl}/api/`;
const frontendApiUrl = `${uiConfig.unleashUrl}/api/frontend`; const frontendApiUrl = `${uiConfig.unleashUrl}/api/frontend/`;
return ( return (
<Alert severity='info'> <Alert severity='info'>

View File

@ -44,7 +44,7 @@ export const DeleteProject = ({
Before you can delete a project, you must first archive all the Before you can delete a project, you must first archive all the
feature flags associated with it feature flags associated with it
{isEnterprise() && automatedActionsEnabled {isEnterprise() && automatedActionsEnabled
? 'and disable all actions that are in it' ? ' and disable all actions that are in it'
: ''} : ''}
. .
</p> </p>