summaryrefslogtreecommitdiff
path: root/Hutch/Views/More/AccountSwitcherView.swift
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-01 11:44:19 -0500
committerChristian Cleberg <[email protected]>2026-04-01 11:44:19 -0500
commit5845fc53b9c81532e552dc3512347e20de0f2090 (patch)
tree30b0b0517d88a598112101a4f0a760bb4fe27efd /Hutch/Views/More/AccountSwitcherView.swift
parent7b59ee6098c4649a51cafe4b58e3a675567e2c08 (diff)
downloadhutch-5845fc53b9c81532e552dc3512347e20de0f2090.tar.gz
hutch-5845fc53b9c81532e552dc3512347e20de0f2090.tar.bz2
hutch-5845fc53b9c81532e552dc3512347e20de0f2090.zip
fix: add tildes to username rows in account-switcher
Diffstat (limited to 'Hutch/Views/More/AccountSwitcherView.swift')
-rw-r--r--Hutch/Views/More/AccountSwitcherView.swift2
1 files changed, 1 insertions, 1 deletions
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 {