From f95d3d5f2af30cb26b00e6a871463ee63ea48f43 Mon Sep 17 00:00:00 2001 From: Marwan051 <115355087+Marwan051@users.noreply.github.com> Date: Sun, 15 Mar 2026 20:34:25 +0200 Subject: [PATCH] fix(tui): replace problematic emojis to avoid width calculation issues in terminal (#303) --- tui/login.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tui/login.go b/tui/login.go index 95260b456d659701301f99f7cf0d8983284ee87d..1490cdfbeaa4fc87522879081a9e25a71d1c8fc9 100644 --- a/tui/login.go +++ b/tui/login.go @@ -49,7 +49,7 @@ func NewLogin(hideTips bool) *Login { case inputProvider: t.Placeholder = "Provider (gmail, icloud, or custom)" t.Focus() - t.Prompt = "☁️ > " + t.Prompt = "🏢 > " case inputName: t.Placeholder = "Display Name" t.Prompt = "👤 > " @@ -58,7 +58,7 @@ func NewLogin(hideTips bool) *Login { t.Prompt = "🏠 > " case inputFetchEmail: t.Placeholder = "Email Address" - t.Prompt = "✉️ > " + t.Prompt = "📧 > " case inputPassword: t.Placeholder = "Password / App Password" t.EchoMode = textinput.EchoPassword