From 10579cceb21369d5eb7742153aa02325a7ff2776 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Sat, 27 Jun 2026 15:38:27 +0000 Subject: [PATCH] chore: generate --- packages/app/src/components/debug-bar.tsx | 56 +++++++++++++---------- 1 file changed, 32 insertions(+), 24 deletions(-) diff --git a/packages/app/src/components/debug-bar.tsx b/packages/app/src/components/debug-bar.tsx index 3699a1a4d8f..e55e128b82f 100644 --- a/packages/app/src/components/debug-bar.tsx +++ b/packages/app/src/components/debug-bar.tsx @@ -52,36 +52,44 @@ const bad = (n: number | undefined, limit: number, low = false) => { const session = (path: string) => path.includes("/session") -function Cell(props: { bad?: boolean; dim?: boolean; inline?: boolean; label: string; tip: string; value: string; wide?: boolean }) { +function Cell(props: { + bad?: boolean + dim?: boolean + inline?: boolean + label: string + tip: string + value: string + wide?: boolean +}) { const content = () => ( +
-
- {props.label} -
-
- {props.value} -
+ {props.label}
+
+ {props.value} +
+
) if (props.inline) {