From 062ca02fab442393cb7c2ab69f119a5b1f76cc47 Mon Sep 17 00:00:00 2001 From: Leejin Yang Date: Fri, 6 Oct 2023 15:27:01 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20feat:=20=EB=B0=B0=EB=84=88=20=EB=A7=81?= =?UTF-8?q?=ED=81=AC=20=EC=82=AD=EC=A0=9C=20(#727)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/HomePage.tsx | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/frontend/src/pages/HomePage.tsx b/frontend/src/pages/HomePage.tsx index 6d8357ba1..436b893ec 100644 --- a/frontend/src/pages/HomePage.tsx +++ b/frontend/src/pages/HomePage.tsx @@ -1,4 +1,4 @@ -import { Heading, Link, Spacing } from '@fun-eat/design-system'; +import { Heading, Spacing } from '@fun-eat/design-system'; import { useQueryErrorResetBoundary } from '@tanstack/react-query'; import { Suspense } from 'react'; import styled from 'styled-components'; @@ -6,12 +6,10 @@ import styled from 'styled-components'; import { Loading, ErrorBoundary, ErrorComponent, CategoryFoodList, CategoryStoreList } from '@/components/Common'; import { ProductRankingList, ReviewRankingList, RecipeRankingList } from '@/components/Rank'; import { IMAGE_URL } from '@/constants'; -import { useGA } from '@/hooks/common'; import channelTalk from '@/service/channelTalk'; export const HomePage = () => { const { reset } = useQueryErrorResetBoundary(); - const { gaEvent } = useGA(); channelTalk.loadScript(); @@ -19,20 +17,10 @@ export const HomePage = () => { pluginKey: process.env.CHANNEL_TALK_KEY ?? '', }); - const handleBannerClick = () => { - gaEvent({ category: 'link', action: '이벤트 배너 클릭', label: '배너' }); - }; - return ( <>
- - - +