1
0
mirror of git://jb55.com/damus synced 2024-10-06 03:33:22 +00:00

loginview: ui: update login preview

This commit is contained in:
ericholguin 2023-05-26 19:24:36 -06:00 committed by William Casarin
parent f975723c0f
commit 8dbe2c728f

View File

@ -353,11 +353,12 @@ struct CreateAccountPrompt: View {
struct LoginView_Previews: PreviewProvider {
static var previews: some View {
let pubkey = "3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"
// let pubkey = "3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"
let pubkey = "npub18m76awca3y37hkvuneavuw6pjj4525fw90necxmadrvjg0sdy6qsngq955"
let bech32_pubkey = "KeyInput"
Group {
LoginView(key: pubkey)
LoginView(key: bech32_pubkey)
LoginView(key: pubkey, accepted: .constant(true))
LoginView(key: bech32_pubkey, accepted: .constant(true))
}
}
}