Fix notifications empty screen

This commit is contained in:
Thomas Ricouard 2023-02-04 20:43:56 +01:00
parent f54db5a43e
commit f4a2d4fcc3

View file

@ -97,6 +97,8 @@ public struct NotificationsListView: View {
EmptyView(iconName: "bell.slash",
title: "notifications.empty.title",
message: "notifications.empty.message")
.listRowBackground(theme.primaryBackgroundColor)
.listSectionSeparator(.hidden)
} else {
ForEach(notifications) { notification in
NotificationRowView(notification: notification)