From ee2fb3b28cc91e6b5a951a515e6cb9596ad067d4 Mon Sep 17 00:00:00 2001 From: Sam DuBois Date: Wed, 21 Dec 2022 12:57:37 -0700 Subject: [PATCH] Removed key and highlight around profile view --- damus/Views/Account/EditAccountView.swift | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/damus/Views/Account/EditAccountView.swift b/damus/Views/Account/EditAccountView.swift index d1a857c..6a31c22 100644 --- a/damus/Views/Account/EditAccountView.swift +++ b/damus/Views/Account/EditAccountView.swift @@ -22,7 +22,7 @@ struct EditAccountView: View { Form { HStack { Spacer() - ProfilePicView(pubkey: state.pubkey, size: 100, highlight: .main, profiles: state.profiles) + ProfilePicView(pubkey: state.pubkey, size: 100, highlight: .none, profiles: state.profiles) Spacer() } .listRowBackground(Color.clear) @@ -38,11 +38,6 @@ struct EditAccountView: View { .frame(height: 150) } - - Section(header: Text("Keys")) { - TextField("Public Key", text: .constant(account.keypair.pubkey)) - TextField("Secret Key", text: .constant(account.keypair.privkey ?? "")) - } } .toolbar { ToolbarItem(placement: .confirmationAction) {