Skip to content

Commit 244ad6b

Browse files
committed
fix : useGetProjects 호출 에러 수정
- types 파일 구조 변경으로 인한 projectDTO 호출 오류 수정
1 parent d3f400a commit 244ad6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/hooks/queries/project/useGetProjects.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useQuery } from "@tanstack/react-query";
22
import { getProjects } from "../../../apis/api/projectAPI";
3-
import { ProjectDTO } from "../../../types/projectDTO";
3+
import { ProjectDTO } from "../../../types/DTO/projectDTO";
44

55
const useGetProjects = () =>
66
useQuery<ProjectDTO[]>({

0 commit comments

Comments
 (0)