Skip to content

Commit

Permalink
ui: seedview copy button timing
Browse files Browse the repository at this point in the history
  • Loading branch information
reez authored Oct 12, 2024
1 parent 2b37737 commit 0dd7747
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BDKSwiftExampleWallet/Utilities/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ struct Constants {
]
}
struct Testnet {
static let blockstream = "http://blockstream.info/testnet/api/"
static let blockstream = "https://blockstream.info/testnet/api/"
//static let kuutamo = "https://esplora.testnet.kuutamo.cloud"
static let mempoolspace = "https://mempool.space/testnet/api/"
static let allValues = [
Expand Down
2 changes: 1 addition & 1 deletion BDKSwiftExampleWallet/View/Settings/SeedView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct SeedView: View {
UIPasteboard.general.string = seed.mnemonic
isCopied = true
showCheckmark = true
DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
DispatchQueue.main.asyncAfter(deadline: .now() + 0.75) {
isCopied = false
showCheckmark = false
}
Expand Down

0 comments on commit 0dd7747

Please sign in to comment.