From 5cf10ad486db2ec9957aacc0524243e054efabd8 Mon Sep 17 00:00:00 2001 From: "lkh14011424@gmail.com" Date: Sat, 31 Aug 2024 08:54:15 +0900 Subject: [PATCH] =?UTF-8?q?[feat/#28]=20=EB=B9=8C=EB=93=9C=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/AuthPage.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pages/AuthPage.tsx b/src/pages/AuthPage.tsx index 640c714..8e2925a 100644 --- a/src/pages/AuthPage.tsx +++ b/src/pages/AuthPage.tsx @@ -6,9 +6,8 @@ import RoutePath from "@/constants/routes.json" import { useAuthStore } from "@/store/AuthStore" import { useSnapshotStore } from "@/store/SnapshotStore" import { useGetRecentSnapshot } from "@/hooks/useSnapshotMutation" -import { useGetNoti, useModifyNoti } from "@/hooks/useNotiMutation" +import { useGetNoti } from "@/hooks/useNotiMutation" import { useNotificationStore } from "@/store/NotificationStore" -import { duration, modifyNotification, notification } from "@/api/notification" const AuthPage: React.FC = () => { const navigate = useNavigate() @@ -19,7 +18,6 @@ const AuthPage: React.FC = () => { const signInMutation = useSignIn() const getRecentSnapMutation = useGetRecentSnapshot() const getNotiMutation = useGetNoti() - const modifyNotiMutation = useModifyNoti() const [isLoading, setIsLoading] = useState(true) const [isError, setIsError] = useState(false)