commit 10cab372702d8528384986eafc4c161b771205ce
parent 179da9709092af840c81308624cc8e0b46e2940f
Author: William Casarin <jb55@jb55.com>
Date: Tue, 11 Apr 2023 14:54:33 -0700
remove unneeded id thingies
Diffstat:
1 file changed, 0 insertions(+), 3 deletions(-)
diff --git a/damus/Views/Notifications/NotificationsView.swift b/damus/Views/Notifications/NotificationsView.swift
@@ -39,15 +39,12 @@ struct NotificationsView: View {
TabView(selection: $filter_state) {
NotificationTab(NotificationFilterState.all)
.tag(NotificationFilterState.all)
- .id(NotificationFilterState.all)
NotificationTab(NotificationFilterState.zaps)
.tag(NotificationFilterState.zaps)
- .id(NotificationFilterState.zaps)
NotificationTab(NotificationFilterState.replies)
.tag(NotificationFilterState.replies)
- .id(NotificationFilterState.replies)
}
.onChange(of: filter_state) { val in
save_notification_filter_state(pubkey: state.pubkey, state: val)