diff --git a/Shared/Navigation/AccountViewButton.swift b/Shared/Navigation/AccountViewButton.swift index 34d587bf..4089c6a9 100644 --- a/Shared/Navigation/AccountViewButton.swift +++ b/Shared/Navigation/AccountViewButton.swift @@ -30,7 +30,6 @@ struct AccountViewButton: View { if accountPickerDisplaysUsername { label - .labelStyle(.titleOnly) } } } @@ -47,6 +46,6 @@ struct AccountViewButton: View { } private var label: some View { - Label(model.current?.description ?? "Select Account", systemImage: "globe") + Text(model.current?.description ?? "Select Account") } }