From 09371f77c5650960bee0ada4ade2728613429e65 Mon Sep 17 00:00:00 2001 From: Thomas Ricouard Date: Sat, 4 Feb 2023 21:30:50 +0100 Subject: [PATCH] Fix notifications error view --- .../Sources/Notifications/NotificationsListView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Packages/Notifications/Sources/Notifications/NotificationsListView.swift b/Packages/Notifications/Sources/Notifications/NotificationsListView.swift index e560df92..c54d0f28 100644 --- a/Packages/Notifications/Sources/Notifications/NotificationsListView.swift +++ b/Packages/Notifications/Sources/Notifications/NotificationsListView.swift @@ -133,6 +133,8 @@ public struct NotificationsListView: View { await viewModel.fetchNotifications() } } + .listRowBackground(theme.primaryBackgroundColor) + .listSectionSeparator(.hidden) } }