diff --git a/src/network/fetchSourcesData/index.ts b/src/network/fetchSourcesData/index.ts index c0d8f6a7b..b61746ccb 100644 --- a/src/network/fetchSourcesData/index.ts +++ b/src/network/fetchSourcesData/index.ts @@ -187,9 +187,9 @@ type GithubRepositoryResponse = { export const analyzeGitHubRepository = async (github_repository: string): Promise => { const url = `/github/analyze?github_repository=${github_repository}&analysis=["coverage"]` - const response = await api.get(url) + const res = await api.get(url) - return response + return res } export const getNodes = async (): Promise => {