From 45c7f2d59fac73fb61408afe2cf7666db08e1665 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sat, 9 May 2026 22:11:28 -0400 Subject: [PATCH] fix(web): inline sandbox native state next to status label Co-Authored-By: Claude Opus 4.7 (1M context) --- apps/fabro-web/app/routes/run-sandbox.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/fabro-web/app/routes/run-sandbox.tsx b/apps/fabro-web/app/routes/run-sandbox.tsx index c2a41fb9a..b04470277 100644 --- a/apps/fabro-web/app/routes/run-sandbox.tsx +++ b/apps/fabro-web/app/routes/run-sandbox.tsx @@ -109,12 +109,12 @@ function StatusStrip({ details }: { details: SandboxDetails }) { {display.label} + {showNative && ( + + ({details.native_state}) + + )} - {showNative && ( - - native: {details.native_state} - - )} ); }