Skip to content

Commit 3794a08

Browse files
fix bug
1 parent 1a03d1a commit 3794a08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/modules/user/user.resolver.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export class UserResolver {
2525

2626
@AllowUnauthorizedRequest()
2727
@Mutation(() => GqlUserWithToken)
28-
createUser(@Args('createUserInput') createUserInput: CreateUserInput) {
28+
createUser(@Args('createUserInput')
29+
createUserInput: CreateUserInput) {
2930
return this.userService.createUser(createUserInput);
3031
}
3132
@Query(() => GqlUserWithToken, { name: 'profile' })

0 commit comments

Comments
 (0)