From 2242ed7aee9406d20b59e04d24a96ab96c40551d Mon Sep 17 00:00:00 2001 From: TeunHuijben Date: Wed, 2 Oct 2024 16:31:19 -0700 Subject: [PATCH] change to popup --- src/components/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/App.tsx b/src/components/App.tsx index 8a24b133..8df821db 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -63,7 +63,7 @@ function detectDeviceType(): { isPhone: boolean; isTablet: boolean; isMobile: bo export const detectedDevice = detectDeviceType(); console.debug("detectDeviceType: ", detectedDevice); if (detectedDevice.isPhone) { - window.confirm("Note: for full functionality, please use a tablet or desktop device."); + window.confirm("Note: for full functionality, please use a tablet or desktop device. Press 'OK' to continue "); } // for debugging: show the detected device type in an alert