From b0515d34ffa857c3f5d730b6406cacb7c4f353e5 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Sun, 15 Mar 2026 14:42:00 -0500 Subject: [PATCH] fix(cli): preserve two-space gaps in mosaic icon tiles Extract gap string to const to prevent prettier from collapsing the double-space literals between icon tiles. --- packages/cli/src/tui/components/top-bar.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/cli/src/tui/components/top-bar.tsx b/packages/cli/src/tui/components/top-bar.tsx index 31b6f3d..3fd6b56 100644 --- a/packages/cli/src/tui/components/top-bar.tsx +++ b/packages/cli/src/tui/components/top-bar.tsx @@ -31,22 +31,24 @@ function formatContextWindow(n: number): string { * ·· pink ·· * amber ·· teal */ +// Two-space gap between tiles (extracted to avoid prettier collapse) +const GAP = ' '; + function MosaicIcon() { return ( ██ - + {GAP} ██ - + {GAP} ██ - ██ - + {GAP} ██