Skip to content

Commit 7a23e97

Browse files
jankeromnesroboquat
authored andcommitted
[server][dashboard][protocol] Remove deprecated Project DB config feature
1 parent 78470a2 commit 7a23e97

File tree

15 files changed

+36
-496
lines changed

15 files changed

+36
-496
lines changed

components/dashboard/src/App.tsx

-7
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ const TeamSettings = React.lazy(() => import(/* webpackPrefetch: true */ "./team
7474
const TeamBilling = React.lazy(() => import(/* webpackPrefetch: true */ "./teams/TeamBilling"));
7575
const TeamUsage = React.lazy(() => import(/* webpackPrefetch: true */ "./teams/TeamUsage"));
7676
const NewProject = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/NewProject"));
77-
const ConfigureProject = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/ConfigureProject"));
7877
const Projects = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/Projects"));
7978
const Project = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/Project"));
8079
const Events = React.lazy(() => import(/* webpackPrefetch: true */ "./projects/Events"));
@@ -435,9 +434,6 @@ function App() {
435434
if (resourceOrPrebuild === "settings") {
436435
return <ProjectSettings />;
437436
}
438-
if (resourceOrPrebuild === "configure") {
439-
return <ConfigureProject />;
440-
}
441437
if (resourceOrPrebuild === "variables") {
442438
return <ProjectVariables />;
443439
}
@@ -487,9 +483,6 @@ function App() {
487483
if (resourceOrPrebuild === "settings") {
488484
return <ProjectSettings />;
489485
}
490-
if (resourceOrPrebuild === "configure") {
491-
return <ConfigureProject />;
492-
}
493486
if (resourceOrPrebuild === "variables") {
494487
return <ProjectVariables />;
495488
}

components/dashboard/src/Menu.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ export default function Menu() {
7575
// project sub-pages
7676
"prebuilds",
7777
"settings",
78-
"configure",
7978
"variables",
8079
].includes(resource)
8180
) {

components/dashboard/src/projects/ConfigureProject.tsx

-308
This file was deleted.

0 commit comments

Comments
 (0)