From a7d6a62f7c9146519fea0e02440d14c15a89524a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Bl=C3=A4ttermann?= Date: Tue, 24 Jan 2023 13:54:49 +0100 Subject: [PATCH] Remove zoom locking (#12164) * Fix missing comma * Activate user zoom for website This is recommended by lighthouse: > Disabling zooming is problematic for users with low vision who rely on screen magnification to properly see the contents of a web page. Learn more. Also iOS already ignores this attribute anyway. --- website/pages/_app.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/_app.tsx b/website/pages/_app.tsx index 8db80a672..a837d9ce8 100644 --- a/website/pages/_app.tsx +++ b/website/pages/_app.tsx @@ -17,7 +17,7 @@ export default function App({ Component, pageProps }: AppProps) {