Skip to content

Commit

Permalink
fix: fix generated url in api client
Browse files Browse the repository at this point in the history
  • Loading branch information
greeeg committed Dec 24, 2023
1 parent 331e817 commit 7ba591c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/openapi-kit/src/generators/apiClient/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export const getHeaderLines = (typeDefinitionsImportPath: string) => [
` const fullUrl = [`,
` baseUrl,`,
` createPath(path, pathParams)`,
` ].join("/");`,
` ].join("");`,
` const query = queryParams`,
` ? queryString.stringify(queryParams, { arrayFormat: "comma" })`,
` : "";`,
Expand Down

0 comments on commit 7ba591c

Please sign in to comment.