Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: button actions on main view #117

Merged
merged 1 commit into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading