From 10cab372702d8528384986eafc4c161b771205ce Mon Sep 17 00:00:00 2001 From: William Casarin Date: Tue, 11 Apr 2023 14:54:33 -0700 Subject: [PATCH] remove unneeded id thingies --- damus/Views/Notifications/NotificationsView.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/damus/Views/Notifications/NotificationsView.swift b/damus/Views/Notifications/NotificationsView.swift index 60e22ae3..c7c54452 100644 --- 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)