From 6db3ae9b8ec2f8491e2c9355056a8693ecd67f47 Mon Sep 17 00:00:00 2001 From: Joel Date: Tue, 21 Jan 2025 18:38:33 +0800 Subject: [PATCH] chore: remove webapp ga (#12909) --- web/app/(shareLayout)/layout.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/app/(shareLayout)/layout.tsx b/web/app/(shareLayout)/layout.tsx index 259af2bc2dc845..94ac1deb0b9275 100644 --- a/web/app/(shareLayout)/layout.tsx +++ b/web/app/(shareLayout)/layout.tsx @@ -1,7 +1,6 @@ import React from 'react' import type { FC } from 'react' import type { Metadata } from 'next' -import GA, { GaType } from '@/app/components/base/ga' export const metadata: Metadata = { icons: 'data:,', // prevent browser from using default favicon @@ -12,7 +11,6 @@ const Layout: FC<{ }> = ({ children }) => { return (
- {children}
)