From aef0ba6ffdcbc7ca7493dde408bad0c6d25f47a7 Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Sat, 9 Dec 2023 21:56:16 +0100 Subject: [PATCH] Fix displaying account username --- Shared/Navigation/AccountViewButton.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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") } }