From 7301623974a5f65edf816640df9a2e5412c68bd0 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 20:09:21 +0200 Subject: [PATCH] Enhance background mode formatting in App.tsx --- src/app/App.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index 06fa0abb..f6ea43f7 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -600,7 +600,15 @@ function formatRunnerFeetPosition(position: Vec3 | null): string { } function formatWorldBackgroundLabel(world: WorldSettings): string { - return world.background.mode === "solid" ? "Solid" : "Vertical Gradient"; + if (world.background.mode === "solid") { + return "Solid"; + } + + if (world.background.mode === "verticalGradient") { + return "Vertical Gradient"; + } + + return "Image"; } export function App({ store, initialStatusMessage }: AppProps) {