Fix bug that said Cards in tap to pay screen when launched from shortcut and user didnt have biometrics enabled
Auto Tag on Version Change / check-version (push) Failing after 10m58s

This commit is contained in:
2026-06-13 18:12:42 +05:00
parent 5b5f776715
commit 286a6f845d
@@ -1037,7 +1037,11 @@ class CardsFragment : Fragment() {
override fun onResume() {
super.onResume()
requireActivity().title = getString(R.string.nav_pay_with_card)
requireActivity().title = getString(when {
isTapMode -> R.string.card_pay_nfc
isManageMode -> R.string.card_manage
else -> R.string.nav_pay_with_card
})
}
override fun onDestroyView() {