fix(tui): replace problematic emojis to avoid width calculation issues in terminal (#303)

Marwan051 created

Change summary

tui/login.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

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