Skip to content

Commit 5de6b85

Browse files
Fix build errors: remove stale .Focus() calls on removed named button elements
Co-authored-by: StuartFerguson <16325469+StuartFerguson@users.noreply.github.com>
1 parent c390b9f commit 5de6b85

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

TransactionProcessor.Mobile/Pages/Transactions/BillPayment/BillPaymentPayBillPage.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public BillPaymentPayBillPage(BillPaymentPayBillPageViewModel vm)
1616
};
1717
vm.OnPaymentAmountEntryCompleted = () =>
1818
{
19-
this.MakePaymentButton.Focus();
2019
};
2120
}
2221

TransactionProcessor.Mobile/Pages/Transactions/MobileTopup/MobileTopupPerformTopupPage.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ public MobileTopupPerformTopupPage(MobileTopupPerformTopupPageViewModel vm)
2727
};
2828
vm.OnCustomerEmailAddressEntryCompleted = () =>
2929
{
30-
this.PerformTopupButton.Focus();
3130
};
3231
}
3332

TransactionProcessor.Mobile/Pages/Transactions/Voucher/VoucherPerformIssuePage.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ public VoucherPerformIssuePage(VoucherPerformIssuePageViewModel vm)
3838
};
3939
vm.OnCustomerEmailAddressEntryCompleted = () =>
4040
{
41-
this.IssueVoucherButton.Focus();
4241
};
4342
}
4443

0 commit comments

Comments
 (0)