diff --git a/src/features/import-projects/giveth/service.ts b/src/features/import-projects/giveth/service.ts index 44dafc4..1b3a7ca 100644 --- a/src/features/import-projects/giveth/service.ts +++ b/src/features/import-projects/giveth/service.ts @@ -1,6 +1,5 @@ import { graphQLRequest } from "../../../helpers/request"; import { GIVETH_API_URL } from "./constants"; -import { GivethProjectInfo } from "./type"; export const fetchGivethProjectsBatch = async (limit: number, skip: number) => { try { @@ -27,8 +26,6 @@ export const fetchGivethProjectsBatch = async (limit: number, skip: number) => { } ); - console.log('res', res) - return res.data.allProjects.projects; } catch (error: any) { console.log("error on fetchGivethProjectsBatch", error.message);