Skip to content

Commit

Permalink
[ fix ] main 쿼리키 분리
Browse files Browse the repository at this point in the history
  • Loading branch information
Me1e committed Jan 13, 2024
1 parent 52b8149 commit 58d489b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hooks/queries/wishes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function useGetWishesProgress() {
* 진행중인 소원 조회(메인화면)
*/
export function useGetMainProgressData() {
const { data: progressData, ...restProps } = useQuery(QUERY_KEY.PROGRESS, getMainProgressData);
const { data: progressData, ...restProps } = useQuery(QUERY_KEY.MAIN, getMainProgressData);

return { progressData, ...restProps };
}
Expand Down

0 comments on commit 58d489b

Please sign in to comment.