Remove authentication for copying npub

Changelog-Fixed: Remove authentication for copying npub
Closes: #778
This commit is contained in:
Swift
2023-03-14 16:07:32 -04:00
committed by William Casarin
parent 98685645d3
commit 44a59e8d57

View File

@@ -72,12 +72,18 @@ struct ConfigView: View {
self.pubkey_copied = is_pk
generator.impactOccurred()
}
if has_authenticated_locally {
if is_pk {
// When trying to copy npub
copyKey()
} else {
authenticateLocally { success in
if success {
copyKey()
// When trying to copy nsec
if has_authenticated_locally {
copyKey()
} else {
authenticateLocally { success in
if success {
copyKey()
}
}
}
}