From 41bf0cf1ba124feba2ba4c431600a60831aec3b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=B5=E1=84=90=E1=85=A2=E1=84=92=E1=85=AE?= =?UTF-8?q?=E1=86=AB?= Date: Thu, 10 Oct 2024 20:21:33 +0900 Subject: [PATCH] =?UTF-8?q?style:=20lint=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/pages/EventPage/EventPageLayout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/pages/EventPage/EventPageLayout.tsx b/client/src/pages/EventPage/EventPageLayout.tsx index b4136205..7361992b 100644 --- a/client/src/pages/EventPage/EventPageLayout.tsx +++ b/client/src/pages/EventPage/EventPageLayout.tsx @@ -1,6 +1,7 @@ import type {Event} from 'types/serviceType'; import {Outlet} from 'react-router-dom'; +import {useEffect} from 'react'; import useEventPageLayout from '@hooks/useEventPageLayout'; import useShareEvent from '@hooks/useShareEvent'; @@ -13,7 +14,6 @@ import {Flex, Icon, IconButton, MainLayout, TopNav} from '@HDesign/index'; import {isMobileDevice} from '@utils/detectDevice'; import {updateMetaTag} from '@utils/udpateMetaTag'; -import {useEffect} from 'react'; export type EventPageContextProps = Event & { isAdmin: boolean;