Fixes non-legible toast view in AuthenticationViewController

This commit is contained in:
Riley Testut
2019-09-08 14:38:32 -07:00
parent 936474cd1c
commit 5b59ccc6a0

View File

@@ -104,6 +104,8 @@ private extension AuthenticationViewController
{
DispatchQueue.main.async {
let toastView = ToastView(text: NSLocalizedString("Failed to Log In", comment: ""), detailText: error.localizedDescription)
toastView.textLabel.textColor = .altPink
toastView.detailTextLabel.textColor = .altPink
toastView.show(in: self.navigationController?.view ?? self.view)
self.toastView = toastView