From 74749b650285458a14d05d9b17494339eed5d0d0 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Thu, 2 Jan 2025 20:30:16 +0530 Subject: [PATCH] [AuthScreen]: Fix toastView bg/fg color and text color --- AltStore/Authentication/AuthenticationViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/AltStore/Authentication/AuthenticationViewController.swift b/AltStore/Authentication/AuthenticationViewController.swift index d1db2e18..3e275e0e 100644 --- a/AltStore/Authentication/AuthenticationViewController.swift +++ b/AltStore/Authentication/AuthenticationViewController.swift @@ -125,6 +125,7 @@ private extension AuthenticationViewController let error = error.withLocalizedTitle(NSLocalizedString("Failed to Log In", comment: "")) let toastView = ToastView(error: error) toastView.show(in: self) + toastView.backgroundColor = .white toastView.textLabel.textColor = .altPrimary toastView.detailTextLabel.textColor = .altPrimary self.toastView = toastView