Fixes incorrect search cancel button tint color after browsing category/source apps

This commit is contained in:
Riley Testut
2023-12-08 18:39:46 -06:00
committed by Magesh K
parent bea54fa748
commit 5d27397f03

View File

@@ -111,6 +111,13 @@ class FeaturedViewController: UICollectionViewController
self.navigationItem.largeTitleDisplayMode = .always
}
override func viewDidAppear(_ animated: Bool)
{
super.viewDidAppear(animated)
self.navigationController?.navigationBar.tintColor = .altPrimary
}
}
private extension FeaturedViewController