fix: minor ui bug for transparent backgrounds (#4886)
Some checks are pending
deploy / deploy (push) Waiting to run
format / format (push) Waiting to run
snapshot / publish (push) Waiting to run
test / test (push) Waiting to run
Update Nix Hashes / update (push) Waiting to run

This commit is contained in:
Dorian Karter 2025-11-28 23:58:44 -06:00 committed by GitHub
parent d80880350d
commit 7d8d360138
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -809,7 +809,8 @@ export function Prompt(props: PromptProps) {
borderColor={highlight()}
customBorderChars={{
...EmptyBorder,
vertical: "╹",
// when the background is transparent, don't draw the vertical line
vertical: theme.background.a != 0 ? "╹" : " ",
}}
>
<box