From 5845fc53b9c81532e552dc3512347e20de0f2090 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 1 Apr 2026 11:44:19 -0500 Subject: fix: add tildes to username rows in account-switcher --- Hutch/Views/More/AccountSwitcherView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Hutch') diff --git a/Hutch/Views/More/AccountSwitcherView.swift b/Hutch/Views/More/AccountSwitcherView.swift index 6fe3c28..aefcc82 100644 --- a/Hutch/Views/More/AccountSwitcherView.swift +++ b/Hutch/Views/More/AccountSwitcherView.swift @@ -18,7 +18,7 @@ struct AccountSwitcherView: View { switchTo(account) } label: { HStack { - Text(account.username) + Text("~\(account.username)") .foregroundStyle(.primary) Spacer() if account.id == appState.activeAccountID { -- cgit v1.2.3