From ecbbc12fe80aed27aadd95124edb6b65d7d350ab Mon Sep 17 00:00:00 2001 From: Cascade Bot Date: Tue, 17 Mar 2026 15:46:36 +0000 Subject: [PATCH] feat(dashboard): move Danger Zone below API Keys in project General settings --- .../projects/project-general-form.tsx | 56 +++++++++---------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/web/src/components/projects/project-general-form.tsx b/web/src/components/projects/project-general-form.tsx index 39714056..1af60993 100644 --- a/web/src/components/projects/project-general-form.tsx +++ b/web/src/components/projects/project-general-form.tsx @@ -357,6 +357,34 @@ export function ProjectGeneralForm({ project }: { project: Project }) { + {/* API Keys */} + + +
+ API Keys + + + + + + Project-scoped API keys for LLM providers. Values are stored encrypted and never + returned to the browser. Engine-specific keys are on the Engine tab. + + +
+
+ + + +
+ {/* Danger Zone */} @@ -402,34 +430,6 @@ export function ProjectGeneralForm({ project }: { project: Project }) { - - {/* API Keys */} - - -
- API Keys - - - - - - Project-scoped API keys for LLM providers. Values are stored encrypted and never - returned to the browser. Engine-specific keys are on the Engine tab. - - -
-
- - - -
);