Skip to content

Commit 4f8dab4

Browse files
fix: argstype do not get configured prefix, suffix
1 parent 33840fc commit 4f8dab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/visitor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class Visitor extends TsVisitor {
6262
return fieldsWithArguments
6363
.map(field => {
6464
const name =
65-
node.name.value +
65+
this.convertName(node.name.value) +
6666
(this.config.addUnderscoreToArgsType ? '_' : '') +
6767
this.convertName(field, {
6868
useTypesPrefix: false,

0 commit comments

Comments
 (0)