Skip to content

Commit 048d604

Browse files
chore: update project overview to flags (#7247)
This PR changes the project screen by calling the main tab "flags" instead of "overview". There isn't really an overview available on that tab anymore, only a list of flags.
1 parent cadf3fb commit 048d604

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frontend/src/component/project/Project/Project.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import useQueryParams from 'hooks/useQueryParams';
2020
import { useEffect, useState } from 'react';
2121
import ProjectEnvironment from '../ProjectEnvironment/ProjectEnvironment';
2222
import { ProjectFeaturesArchive } from './ProjectFeaturesArchive/ProjectFeaturesArchive';
23-
import ProjectOverview from './ProjectOverview';
23+
import ProjectFlags from './ProjectFlags';
2424
import ProjectHealth from './ProjectHealth/ProjectHealth';
2525
import PermissionIconButton from 'component/common/PermissionIconButton/PermissionIconButton';
2626
import { UPDATE_FEATURE } from 'component/providers/AccessProvider/permissions';
@@ -85,9 +85,9 @@ export const Project = () => {
8585

8686
const tabs: ITab[] = [
8787
{
88-
title: 'Overview',
88+
title: 'Flags',
8989
path: basePath,
90-
name: 'overview',
90+
name: 'flags',
9191
},
9292
{
9393
title: 'Insights',
@@ -323,7 +323,7 @@ export const Project = () => {
323323
/>
324324
<Route path='settings/*' element={<ProjectSettings />} />
325325
<Route path='applications' element={<ProjectApplications />} />
326-
<Route path='*' element={<ProjectOverview />} />
326+
<Route path='*' element={<ProjectFlags />} />
327327
</Routes>
328328
<ImportModal
329329
open={modalOpen}

0 commit comments

Comments
 (0)