From 1ab92df3f58dd2b68991995a6fdcefca43bca3c6 Mon Sep 17 00:00:00 2001 From: David Christiandy <1299411+dvdchr@users.noreply.github.com> Date: Tue, 13 Dec 2022 21:45:49 +0700 Subject: [PATCH] Fix notification filter bar background leaking to the table header --- .../Notifications/Controllers/NotificationsViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/Notifications/Controllers/NotificationsViewController.swift b/WordPress/Classes/ViewRelated/Notifications/Controllers/NotificationsViewController.swift index 4adbf8ab0ef4..86e28de6b882 100644 --- a/WordPress/Classes/ViewRelated/Notifications/Controllers/NotificationsViewController.swift +++ b/WordPress/Classes/ViewRelated/Notifications/Controllers/NotificationsViewController.swift @@ -618,7 +618,7 @@ private extension NotificationsViewController { func setupFilterBar() { WPStyleGuide.configureFilterTabBar(filterTabBar) - filterTabBar.superview?.backgroundColor = .filterBarBackground + filterTabBar.superview?.backgroundColor = .systemBackground filterTabBar.items = Filter.allCases filterTabBar.addTarget(self, action: #selector(selectedFilterDidChange(_:)), for: .valueChanged)