From 859552adf4a9d7cd2b5a63f576365bdf95979de9 Mon Sep 17 00:00:00 2001 From: Mervin Choun Date: Mon, 29 Jan 2024 17:46:54 -0500 Subject: [PATCH] add iPadOs device check to overlay continue button --- src/overlay/template.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/overlay/template.jsx b/src/overlay/template.jsx index 7bc866db..b217786a 100644 --- a/src/overlay/template.jsx +++ b/src/overlay/template.jsx @@ -4,6 +4,7 @@ import { isIos, + isIpadOs, isFirefox, animate, noop, @@ -95,7 +96,7 @@ export function Overlay({ return; } - if (isIos()) { + if (isIos() || isIpadOs()) { // Note: alerts block the event loop until they are closed. // eslint-disable-next-line no-alert window.alert("Please switch tabs to reactivate the PayPal window");