Skip to content

Commit

Permalink
fix: missing space in delete project message (#7771)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Aug 6, 2024
1 parent 440c2b6 commit 41c6d06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ApiTokenDocs = () => {
};

const clientApiUrl = `${uiConfig.unleashUrl}/api/`;
const frontendApiUrl = `${uiConfig.unleashUrl}/api/frontend`;
const frontendApiUrl = `${uiConfig.unleashUrl}/api/frontend/`;

return (
<Alert severity='info'>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const DeleteProject = ({
Before you can delete a project, you must first archive all the
feature flags associated with it
{isEnterprise() && automatedActionsEnabled
? 'and disable all actions that are in it'
? ' and disable all actions that are in it'
: ''}
.
</p>
Expand Down

0 comments on commit 41c6d06

Please sign in to comment.