From 86f8ee4d52bf8f684c20c11abfcab4313dcf91dd Mon Sep 17 00:00:00 2001 From: Anusha Date: Fri, 6 Sep 2024 20:06:49 +0500 Subject: [PATCH] disable strict mode --- src/CONFIG.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CONFIG.ts b/src/CONFIG.ts index a1a72b86fadd..047d4dc823fd 100644 --- a/src/CONFIG.ts +++ b/src/CONFIG.ts @@ -97,5 +97,5 @@ export default { }, GCP_GEOLOCATION_API_KEY: googleGeolocationAPIKey, // to read more about StrictMode see: contributingGuides/STRICT_MODE.md - USE_REACT_STRICT_MODE_IN_DEV: true, + USE_REACT_STRICT_MODE_IN_DEV: false, } as const;