Skip to content

Commit

Permalink
fix: button actions on main view
Browse files Browse the repository at this point in the history
  • Loading branch information
reez authored Aug 31, 2024
1 parent 5dee844 commit 2ef76e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions LDKNodeMonday/View/Home/BitcoinView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ struct BitcoinView: View {
HStack {

Button(action: {
isSendSheetPresented = true
isReceiveSheetPresented = true
}) {
Image(systemName: "qrcode")
.font(.title)
Expand All @@ -175,7 +175,7 @@ struct BitcoinView: View {
Spacer()

Button(action: {
isReceiveSheetPresented = true
isSendSheetPresented = true
}) {
Image(systemName: "qrcode.viewfinder")
.font(.title)
Expand Down
2 changes: 1 addition & 1 deletion LDKNodeMonday/View/Home/Receive/BIP21View.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ struct BIP21View: View {
)
}
} label: {
Text("Create Amount Invoice")
Text("Create Unified QR")
}

} else {
Expand Down

0 comments on commit 2ef76e0

Please sign in to comment.