Skip to content

Commit

Permalink
fix: project settings title (#6011)
Browse files Browse the repository at this point in the history
Small fix to the project settings title, correcting it and making it
consistent.
  • Loading branch information
nunogois committed Jan 24, 2024
1 parent e3fb3fd commit 13a9b1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -19,7 +19,7 @@ export const DeleteProjectForm = ({ featureCount }: IDeleteProjectForm) => {
return (
<FormTemplate
loading={loading}
title='Delete Project'
title='Delete project'
description=''
documentationLink='https://docs.getunleash.io/reference/projects'
documentationLinkLabel='Projects documentation'
Expand Down
Expand Up @@ -113,7 +113,7 @@ export const UpdateProject = ({ project }: IUpdateProject) => {
<StyledContainer isPro={isPro()}>
<FormTemplate
loading={loading}
title='General Settings'
title='General settings'
description='Projects allows you to group feature toggles together in the management UI.'
documentationLink='https://docs.getunleash.io/reference/projects'
documentationLinkLabel='Projects documentation'
Expand Down
Expand Up @@ -24,7 +24,7 @@ export const Settings = () => {
if (isOss()) {
return (
<PageContent
header={<PageHeader title='Access' />}
header={<PageHeader title='General settings' />}
sx={{ justifyContent: 'center' }}
>
<PremiumFeature feature='project-settings' />
Expand All @@ -34,7 +34,7 @@ export const Settings = () => {

if (!hasAccess([UPDATE_PROJECT, PROJECT_SETTINGS_READ], projectId)) {
return (
<PageContent header={<PageHeader title='Access' />}>
<PageContent header={<PageHeader title='General settings' />}>
<Alert severity='error'>
You need project owner permissions to access this section.
</Alert>
Expand Down

1 comment on commit 13a9b1b

@vercel
Copy link

@vercel vercel bot commented on 13a9b1b Jan 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.