Skip to content

Commit

Permalink
Merge pull request #12338 from swagger-api/typescript-fetch-tweak
Browse files Browse the repository at this point in the history
use URLSearchParams instead of url.URLSeachParams
  • Loading branch information
HugoMario authored Feb 7, 2024
2 parents 16f539d + e68265c commit d1dc253
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const {{classname}}FetchParamCreator = function (configuration?: Configur
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
{{#hasFormParams}}
const localVarFormParams = new url.URLSearchParams();
const localVarFormParams = new URLSearchParams();
{{/hasFormParams}}
{{#authMethods}}
Expand Down

0 comments on commit d1dc253

Please sign in to comment.