Refactoring Edit Picture Views

This commit is contained in:
Joel Klabo
2023-04-03 14:23:36 -07:00
committed by William Casarin
parent bf95a8b328
commit 9e7e128d9a
8 changed files with 61 additions and 81 deletions

View File

@@ -14,8 +14,8 @@ class CreateAccountModel: ObservableObject {
@Published var about: String = ""
@Published var pubkey: String = ""
@Published var privkey: String = ""
@Published var profile_image: String? = nil
@Published var profile_image: URL? = nil
var pubkey_bech32: String {
return bech32_pubkey(self.pubkey) ?? ""
}