diff --git a/apple/OmnivoreKit/Sources/App/Views/Home/LibraryScanFeedView.swift b/apple/OmnivoreKit/Sources/App/Views/Home/LibraryScanFeedView.swift index 9e75076af..3c9849a3c 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Home/LibraryScanFeedView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Home/LibraryScanFeedView.swift @@ -130,15 +130,23 @@ public struct LibraryScanFeedView: View { } .toolbar { ToolbarItem(placement: .barTrailing) { - Button(action: { - dismiss() - showInLibrarySnackbar("Adding feeds...") - Task { - await viewModel.addFeeds() - } - }, label: { - Text("Done").bold() - }) + if viewModel.selected.count > 0 { + Button(action: { + dismiss() + showInLibrarySnackbar("Adding feeds...") + Task { + await viewModel.addFeeds() + } + }, label: { + Text("Add").bold() + }) + } else { + Button(action: { + dismiss() + }, label: { + Text("Done").bold() + }) + } } } }