From aef479218dfa467bf4ff930d581d0c0714d1a80f Mon Sep 17 00:00:00 2001 From: Stefan de Vogelaere Date: Sat, 17 Jan 2026 19:32:42 +0100 Subject: [PATCH] fix: use DEFAULT_FONT_VALUE for initial terminal font The initial terminalState.fontFamily was set to a raw font string that didn't match any option in TERMINAL_FONT_OPTIONS, causing the dropdown to appear empty. Changed to use DEFAULT_FONT_VALUE sentinel. --- apps/ui/src/store/app-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ui/src/store/app-store.ts b/apps/ui/src/store/app-store.ts index 75c97ccb..a23c17c4 100644 --- a/apps/ui/src/store/app-store.ts +++ b/apps/ui/src/store/app-store.ts @@ -1440,7 +1440,7 @@ const initialState: AppState = { defaultFontSize: 14, defaultRunScript: '', screenReaderMode: false, - fontFamily: "Menlo, Monaco, 'Courier New', monospace", + fontFamily: DEFAULT_FONT_VALUE, scrollbackLines: 5000, lineHeight: 1.0, maxSessions: 100,