e2corporation commented on code in PR #2926:
URL: https://github.com/apache/incubator-devlake/pull/2926#discussion_r963975582
##########
config-ui/src/pages/blueprints/create-blueprint.jsx:
##########
@@ -241,14 +243,27 @@ const CreateBlueprint = (props) => {
error: jiraProxyError,
} = useJIRA(
{
- apiProxyPath: API_PROXY_ENDPOINT,
+ apiProxyPath: JIRA_API_PROXY_ENDPOINT,
issuesEndpoint: ISSUE_TYPES_ENDPOINT,
fieldsEndpoint: ISSUE_FIELDS_ENDPOINT,
boardsEndpoint: BOARDS_ENDPOINT,
},
configuredConnection
)
+ const {
+ fetchProjects: fetchGitlabProjects,
+ projects: gitlabProjects,
+ isFetching: isFetchingGitlab,
+ error: gitlabProxyError,
+ } = useGitlab(
+ {
+ apiProxyPath: JIRA_API_PROXY_ENDPOINT,
Review Comment:
I think you intended to use Gitlab's API Proxy path instead?
```suggestion
apiProxyPath: GITLAB_API_PROXY_ENDPOINT,
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]