diff --git a/apple/OmnivoreKit/Sources/App/Views/LibraryTabView.swift b/apple/OmnivoreKit/Sources/App/Views/LibraryTabView.swift index 07681a8fe..1fcf44107 100644 --- a/apple/OmnivoreKit/Sources/App/Views/LibraryTabView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/LibraryTabView.swift @@ -23,7 +23,7 @@ struct LibraryTabView: View { @AppStorage(UserDefaultKey.lastSelectedTabItem.rawValue) var selectedTab = "inbox" @AppStorage(UserDefaultKey.followingPrimerDisplayed.rawValue) var followingPrimerDisplayed = false - @State var showFollowingPrimer = true + @State var showFollowingPrimer = false @State var showExpandedAudioPlayer = false private let syncManager = LibrarySyncManager() @@ -74,10 +74,12 @@ struct LibraryTabView: View { var body: some View { VStack(spacing: 0) { - PresentationLink(transition: UIDevice.isIPad ? .popover : .sheet(detents: [.medium]), isPresented: $showFollowingPrimer) { - FollowingViewModal() - } label: { - EmptyView() + if showFollowingPrimer { + PresentationLink(transition: UIDevice.isIPad ? .popover : .sheet(detents: [.medium]), isPresented: $showFollowingPrimer) { + FollowingViewModal() + } label: { + EmptyView() + } } TabView(selection: $selectedTab) {