diff --git a/Home/Views/index.ejs b/Home/Views/index.ejs index 5467875761..b75cd1d4b5 100644 --- a/Home/Views/index.ejs +++ b/Home/Views/index.ejs @@ -117,15 +117,6 @@ }); } - // Mobile redirect helper - if JS is available and we detect mobile, redirect to dashboard - if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|Windows Phone|Opera Mini|IEMobile|Mobile Safari|Mobile/i.test(navigator.userAgent)) { - // Small delay to avoid redirect loops and let server handle first - setTimeout(() => { - if (window.location.pathname === '/' && !window.location.search.includes('no-mobile-redirect')) { - window.location.href = '/dashboard'; - } - }, 100); - }