Skip to content

Commit

Permalink
FE-27 🔥 폴더이동 후 삭제 안된 기존 파일 삭제 (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeonYumin94 authored Aug 1, 2024
1 parent c0ff71f commit b4b1682
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/apis/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,6 @@ const queries = createQueryKeyStore({
queryFn: () => getMyEpigramComments(request),
}),
},
// NOTE: Epigram 관련 query함수
epigram: {
getEpigram: (request: EpigramRequestType) => ({
queryKey: ['epigram', request.id, request],
queryFn: () => {
if (request.id === undefined) {
throw new Error('Epigram ID가 제공되지 않았습니다.');
}
return getEpigram(request);
},
enabled: request.id !== undefined,
}),
},
epigramComment: {
getComments: (request: CommentRequestType) => ({
queryKey: ['epigramComments', request],
queryFn: () => getEpigramComments(request),
}),
},
emotion: {
getMonthlyEmotionLogs: (request: GetMonthlyEmotionLogsRequestType) => ({
queryKey: ['getMonthlyEmotionLogs', request],
Expand Down

0 comments on commit b4b1682

Please sign in to comment.