diff --git a/app/providers.tsx b/app/providers.tsx index 01ab9f8..77c11b6 100644 --- a/app/providers.tsx +++ b/app/providers.tsx @@ -4,11 +4,11 @@ import { theme } from "./styles/theme"; import { useEffect } from "react"; export function Providers({ children }: { children: React.ReactNode }) { - useEffect(() => { - if (window.innerWidth < 768 && !window.location.href.includes("/mobile")) { - window.location.href = "/mobile"; - } - }, []); + // useEffect(() => { + // if (window.innerWidth < 768 && !window.location.href.includes("/mobile")) { + // window.location.href = "/mobile"; + // } + // }, []); return {children}; }