Skip to content

Commit 1a03d1a

Browse files
Revert "fix bug"
This reverts commit e0c349d.
1 parent 966c660 commit 1a03d1a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.yarn/install-state.gz

10 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@
104104
"tsconfig-paths": "^4.2.0",
105105
"typescript": "^5.1.3"
106106
}
107-
}
107+
}

src/modules/user/user.resolver.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ export class UserResolver {
1717
@Mutation(() => GqlUserWithToken, { name: 'login' })
1818
login(
1919
@Args('loginUserInput')
20-
loginUserInput: LoginUserInput,
20+
loginUserInput:
21+
LoginUserInput,
2122
) {
2223
return this.userService.login(loginUserInput);
2324
}
2425

2526
@AllowUnauthorizedRequest()
2627
@Mutation(() => GqlUserWithToken)
27-
createUser(@Args
28-
('createUserInput') createUserInput: CreateUserInput) {
28+
createUser(@Args('createUserInput') createUserInput: CreateUserInput) {
2929
return this.userService.createUser(createUserInput);
3030
}
3131
@Query(() => GqlUserWithToken, { name: 'profile' })

0 commit comments

Comments
 (0)