Skip to content

Commit d2dbbac

Browse files
committed
배포에러 수정
1 parent 69485bc commit d2dbbac

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/pages/DetailRecord/DetailRecord.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { useRef } from 'react'
1919
import Modal from '@components/Modal'
2020
import { deleteRecord, getRecord } from '@apis/record'
2121
import { useQuery } from '@tanstack/react-query'
22-
import Loading from '@components/Loading'
2322
import { getChipIconName } from './getChipIconName'
2423
import ImageContainer from './ImageContainer'
2524
import { useUser } from '@react-query/hooks/useUser'
@@ -72,7 +71,7 @@ export default function DetailRecord() {
7271
}
7372
}, [])
7473

75-
const { data, isLoading, isError, isSuccess } = useQuery(
74+
const { data, isError, isSuccess } = useQuery(
7675
['getRecordData', recordIdParams],
7776
() => getRecord(recordIdParams),
7877
{

0 commit comments

Comments
 (0)