From ea817d8044702d00471a62bd149b13d7b70ee95f Mon Sep 17 00:00:00 2001 From: Aditya Gupta Date: Fri, 10 Jul 2026 22:52:47 +0530 Subject: [PATCH] fix(gui): Prevent page collapse by persistent config mount --- apps/gui/src/app/config/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/gui/src/app/config/page.tsx b/apps/gui/src/app/config/page.tsx index debd45b..1b2393a 100644 --- a/apps/gui/src/app/config/page.tsx +++ b/apps/gui/src/app/config/page.tsx @@ -206,15 +206,15 @@ export default function ConfigPage() {

Configuration

- {loading &&

Loading configuration...

} + {config === null && loading &&

Loading configuration...

} {error && (
{error}
)} - {config && !loading && ( - <> + {config && ( +

LLM Provider Instances

@@ -513,7 +513,7 @@ export default function ConfigPage() { )}
- +
)}
);