diff --git a/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift b/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift index 6855864cf..4e37b285b 100644 --- a/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift +++ b/Mastodon/In Progress New Layout and Datamodel/NotificationListViewController.swift @@ -145,6 +145,11 @@ struct NotificationListView: View { .onDisappear() { viewDidDisappear() } + .accessibilityAction(named: L10n.Common.Controls.Actions.seeMore) { + Task { + await viewModel.refreshFeedFromTop() + } + } } } }