From 147ce950f798be87a5b7acdc8fe2d479a791b2b7 Mon Sep 17 00:00:00 2001 From: dankito Date: Sat, 5 Sep 2020 03:30:29 +0200 Subject: [PATCH] Removed setting selectedBank to nil for unsupported banks, there should be absolutely no use in it --- ui/BankingiOSApp/BankingiOSApp/ui/views/SelectBankDialog.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/views/SelectBankDialog.swift b/ui/BankingiOSApp/BankingiOSApp/ui/views/SelectBankDialog.swift index db3585f8..5e1c3f14 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/views/SelectBankDialog.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/views/SelectBankDialog.swift @@ -107,8 +107,6 @@ struct SelectBankDialog: View { } private func showBankIsNotSupportedMessage(_ bank: BankInfo) { - self.selectedBank = nil - self.errorMessage = Message(title: Text("\(bank.name) does not support FinTS 3.0"), message: Text("Only banks supporting FinTS 3.0 can be used in this app.")) }