We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a28d9b commit ca9bcc5Copy full SHA for ca9bcc5
1 file changed
Bitkit/Views/Transfer/FundManualAmountView.swift
@@ -82,10 +82,12 @@ struct FundManualAmountView: View {
82
NumberPadActionButton(text: t("lightning__spending_amount__quarter")) {
83
amountViewModel.updateFromSats(UInt64(wallet.channelFundableBalanceSats) / 4, currency: currency)
84
}
85
+ .accessibilityIdentifier("ExternalAmountQuarter")
86
87
NumberPadActionButton(text: t("common__max")) {
88
amountViewModel.updateFromSats(UInt64(wallet.channelFundableBalanceSats), currency: currency)
89
90
+ .accessibilityIdentifier("ExternalAmountMax")
91
92
93
0 commit comments