From 48d855b30af3bca7baf90303f6839b241d27508e Mon Sep 17 00:00:00 2001 From: Hooman Digital Date: Tue, 6 Aug 2024 21:35:02 +0530 Subject: [PATCH] fix(console): update CustomGoogleAnalytics.tsx (#290) Co-authored-by: dharamveergit --- .../src/components/layout/CustomGoogleAnalytics.tsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/apps/deploy-web/src/components/layout/CustomGoogleAnalytics.tsx b/apps/deploy-web/src/components/layout/CustomGoogleAnalytics.tsx index d827360de..aeaccebdf 100644 --- a/apps/deploy-web/src/components/layout/CustomGoogleAnalytics.tsx +++ b/apps/deploy-web/src/components/layout/CustomGoogleAnalytics.tsx @@ -14,14 +14,5 @@ export default function GoogleAnalytics() { }); }); - return ( - <> - {isProd && ( - <> - - - - )} - - ); + return <>{isProd && }; }