Skip to content

Commit

Permalink
chore: remove paramType call
Browse files Browse the repository at this point in the history
Co-authored-by: Manuel Spigolon <[email protected]>
  • Loading branch information
msebastianb and Eomm authored Oct 11, 2023
1 parent d3b0fb1 commit 7f36c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util/generate-params-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function generateParamsSchema (url) {
schema.params.properties = params.reduce((acc, param) => {
const name = paramName(param)
acc[name] = {
type: paramType()
type: 'string'
}
return acc
}, {})
Expand Down

0 comments on commit 7f36c54

Please sign in to comment.