From e66e2231898d53834db01c49e2dfc316fee7a984 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Sun, 24 Nov 2024 23:06:39 +0530 Subject: [PATCH] Fix: update sign-in screen toast text color to be primary color --- AltStore/Authentication/AuthenticationViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AltStore/Authentication/AuthenticationViewController.swift b/AltStore/Authentication/AuthenticationViewController.swift index 6c38d2f2..29200868 100644 --- a/AltStore/Authentication/AuthenticationViewController.swift +++ b/AltStore/Authentication/AuthenticationViewController.swift @@ -112,6 +112,8 @@ private extension AuthenticationViewController let toastView = ToastView(error: error) toastView.show(in: self) + toastView.textLabel.textColor = .altPrimary + toastView.detailTextLabel.textColor = .altPrimary self.toastView = toastView self.signInButton.isIndicatingActivity = false