Skip to content

Commit

Permalink
Update pkg/api/tracking.go
Browse files Browse the repository at this point in the history
Co-authored-by: seilagamo <[email protected]>
  • Loading branch information
jesusfcr and seilagamo authored Apr 11, 2024
1 parent 7dfa119 commit 93ce5de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/tracking.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (api *API) CreateTicket(c echo.Context) error {
}
configuration, err = api.ticketServer.ProjectConfigByTeamID(api.Options.DefaultTeamProject)
if err != nil {
return responseError(fmt.Errorf("unable to find config for default team %s", api.Options.DefaultTeamProject))
return responseError(fmt.Errorf("unable to find config for default team %s: %w", api.Options.DefaultTeamProject, err))
}
projectTeamID = api.Options.DefaultTeamProject
}
Expand Down

0 comments on commit 93ce5de

Please sign in to comment.