Skip to content

Commit f95d3d5

Browse files
authored
fix(tui): replace problematic emojis to avoid width calculation issues in terminal (#303)
1 parent 102f98d commit f95d3d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tui/login.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func NewLogin(hideTips bool) *Login {
4949
case inputProvider:
5050
t.Placeholder = "Provider (gmail, icloud, or custom)"
5151
t.Focus()
52-
t.Prompt = "☁️ > "
52+
t.Prompt = "🏢 > "
5353
case inputName:
5454
t.Placeholder = "Display Name"
5555
t.Prompt = "👤 > "
@@ -58,7 +58,7 @@ func NewLogin(hideTips bool) *Login {
5858
t.Prompt = "🏠 > "
5959
case inputFetchEmail:
6060
t.Placeholder = "Email Address"
61-
t.Prompt = "✉️ > "
61+
t.Prompt = "📧 > "
6262
case inputPassword:
6363
t.Placeholder = "Password / App Password"
6464
t.EchoMode = textinput.EchoPassword

0 commit comments

Comments
 (0)