From 8abfe894e342d105757740b8cd66aecdda52e118 Mon Sep 17 00:00:00 2001 From: Sai Shankar Date: Tue, 17 Mar 2026 09:47:19 +0530 Subject: [PATCH] hide version until loaded --- ui/src/components/Layout.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ui/src/components/Layout.tsx b/ui/src/components/Layout.tsx index 5c8f43d6..ab0977e2 100644 --- a/ui/src/components/Layout.tsx +++ b/ui/src/components/Layout.tsx @@ -268,9 +268,9 @@ export function Layout() { Documentation - - {health?.version ? `v${health.version}` : "v?.?.?"} - + {health?.version && ( + v{health.version} + )}