diff --git a/src/App.jsx b/src/App.jsx index febb028..a656334 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -5,7 +5,7 @@ import Apology from './components/component/apology'; const isDesktop = () => { const userAgent = window.navigator.userAgent.toLowerCase(); const isMobile = /mobile|android|iphone|ipad|tablet|touch|samsung|fridge/i.test(userAgent); - const isSmallScreen = window.innerWidth <= 1024; // Adjust the screen width threshold as needed + const isSmallScreen = window.innerWidth <= 1024; return !isMobile && !isSmallScreen; };