diff options
| author | Christian Cleberg <[email protected]> | 2026-04-01 11:44:19 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-04-01 11:44:19 -0500 |
| commit | 5845fc53b9c81532e552dc3512347e20de0f2090 (patch) | |
| tree | 30b0b0517d88a598112101a4f0a760bb4fe27efd /Hutch/Views | |
| parent | 7b59ee6098c4649a51cafe4b58e3a675567e2c08 (diff) | |
| download | hutch-5845fc53b9c81532e552dc3512347e20de0f2090.tar.gz hutch-5845fc53b9c81532e552dc3512347e20de0f2090.tar.bz2 hutch-5845fc53b9c81532e552dc3512347e20de0f2090.zip | |
fix: add tildes to username rows in account-switcher
Diffstat (limited to 'Hutch/Views')
| -rw-r--r-- | Hutch/Views/More/AccountSwitcherView.swift | 2 |
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 { |
