diff --git a/firefox-ios/Client/Coordinators/Library/LibraryCoordinator.swift b/firefox-ios/Client/Coordinators/Library/LibraryCoordinator.swift index 8a70e805bbf0d..a3177203b5c88 100644 --- a/firefox-ios/Client/Coordinators/Library/LibraryCoordinator.swift +++ b/firefox-ios/Client/Coordinators/Library/LibraryCoordinator.swift @@ -120,7 +120,11 @@ class LibraryCoordinator: BaseCoordinator, add(child: coordinator) // Note: Called from History, Bookmarks, and Reading List long presses > Share from the context menu - coordinator.start(shareType: .site(url: url), shareMessage: nil, sourceView: sourceView) + let arrowDirection: UIPopoverArrowDirection = UIDevice.current.userInterfaceIdiom == .pad ? .any : .up + coordinator.start(shareType: .site(url: url), + shareMessage: nil, + sourceView: sourceView, + popoverArrowDirection: arrowDirection) } private func makeBookmarksCoordinator(navigationController: UINavigationController) {