From dca8937abaa6ec424ebbe71f991f3aad6cf60296 Mon Sep 17 00:00:00 2001 From: Ico Davids Date: Tue, 14 Mar 2023 12:17:05 +0100 Subject: [PATCH] Use 'Done' text on accounts selector (#1245) --- .../Sources/AppAccount/AppAccountsSelectorView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Packages/AppAccount/Sources/AppAccount/AppAccountsSelectorView.swift b/Packages/AppAccount/Sources/AppAccount/AppAccountsSelectorView.swift index 325be2b1..720e9062 100644 --- a/Packages/AppAccount/Sources/AppAccount/AppAccountsSelectorView.swift +++ b/Packages/AppAccount/Sources/AppAccount/AppAccountsSelectorView.swift @@ -111,11 +111,11 @@ public struct AppAccountsSelectorView: View { .navigationTitle("settings.section.accounts") .navigationBarTitleDisplayMode(.inline) .toolbar { - ToolbarItem(placement: .navigationBarLeading) { + ToolbarItem(placement: .navigationBarTrailing) { Button { isPresented.toggle() } label: { - Image(systemName: "xmark.circle") + Text("action.done").bold() } } }