Skip to content

Commit

Permalink
hotfix : build 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
jiji-hoon96 committed Aug 24, 2024
1 parent d2659cc commit 7f2f376
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/app/meeting/photo-capture/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import { useState } from 'react'
import { useRouter } from 'next/navigation'
import useCamera from '@/hooks/useCamera'
import useMeetingStore from '@/stores/useMeetingStore'
import useMissionStore from '@/stores/useMissionStore'
import CameraView from './_components/CameraView'
import PhotoView from './_components/PhotoView'
Expand All @@ -12,7 +11,6 @@ function PhotoCapture() {
const router = useRouter()
const [photo, setPhoto] = useState<string | null>(null)
const [captureTime, setCaptureTime] = useState<Date | null>(null)
const meetingId = useMeetingStore((state) => state.meetingData?.meetingId)
const { setMissionId, setMissionType, setCurrentMission } = useMissionStore()

const {
Expand Down

0 comments on commit 7f2f376

Please sign in to comment.