From 551d7c7fd01073d114e08c172efed8355c444722 Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Tue, 24 Feb 2026 14:20:36 +0300 Subject: [PATCH] fix(shell): rename selection property in terminal options --- src/components/shell/constants/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/shell/constants/constants.ts b/src/components/shell/constants/constants.ts index 3f4a1cf..9a523d4 100644 --- a/src/components/shell/constants/constants.ts +++ b/src/components/shell/constants/constants.ts @@ -23,7 +23,7 @@ export const TERMINAL_OPTIONS: ITerminalOptions = { foreground: '#d4d4d4', cursor: '#ffffff', cursorAccent: '#1e1e1e', - selection: '#264f78', + selectionBackground: '#264f78', selectionForeground: '#ffffff', black: '#000000', red: '#cd3131', @@ -59,5 +59,5 @@ export const TERMINAL_OPTIONS: ITerminalOptions = { '#00ffff', '#ffffff', ], - } as any, + }, };