From 603cfdc14aa2d2503568dc20503fbfa35ca53d68 Mon Sep 17 00:00:00 2001 From: Andcool-Systems Date: Mon, 6 Jan 2025 12:50:27 +0300 Subject: [PATCH] added phone zoom ability --- src/app/layout.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8a9f43e..afe7fc3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -21,9 +21,7 @@ export const generateMetadata = async (): Promise => { export const viewport: Viewport = { width: 'device-width', - initialScale: 0.9, - maximumScale: 0.9, - userScalable: false + initialScale: 0.9 } export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {