From 99c2051ca6a31f34c8d7da8291c5f778c7fdb2b8 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 12 Sep 2023 15:46:45 +0800 Subject: [PATCH] Dont use interactive transition on iPad --- .../Sources/App/Views/SwipeRightToPopViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apple/OmnivoreKit/Sources/App/Views/SwipeRightToPopViewController.swift b/apple/OmnivoreKit/Sources/App/Views/SwipeRightToPopViewController.swift index 82faaa9e2..3a2fb967b 100644 --- a/apple/OmnivoreKit/Sources/App/Views/SwipeRightToPopViewController.swift +++ b/apple/OmnivoreKit/Sources/App/Views/SwipeRightToPopViewController.swift @@ -123,6 +123,8 @@ class SwipeRightToPopViewController: UIHostingController, UINa { if #available(iOS 17.0, *) { return nil + } else if UIDevice.isIPad { + return nil } else { return SlideAnimatedTransitioning() }