Skip to content

Commit

Permalink
[feat/#28] 빌드 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
lkhoony committed Aug 30, 2024
1 parent 3c36e85 commit 5cf10ad
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pages/AuthPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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)

Expand Down

0 comments on commit 5cf10ad

Please sign in to comment.