Skip to content

Commit

Permalink
errored
Browse files Browse the repository at this point in the history
  • Loading branch information
rajashekhargithubb committed May 24, 2024
1 parent 3ad3507 commit 662afc0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"precommit": "lint-staged",
"prepare": "husky",
"prepush": "echo",
Expand Down
7 changes: 5 additions & 2 deletions src/modules/user/user.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@ export class UserResolver {

@AllowUnauthorizedRequest()
@Mutation(() => GqlUserWithToken, { name: 'login' })
login(@Args('loginUserInput')
loginUserInput: LoginUserInput) {
login(
@Args('loginUserInput')
loginUserInput:

Check failure on line 20 in src/modules/user/user.resolver.ts

View workflow job for this annotation

GitHub Actions / build

Delete `⏎·····`

Check failure on line 20 in src/modules/user/user.resolver.ts

View workflow job for this annotation

GitHub Actions / build

Delete `⏎·····`
LoginUserInput,
) {
return this.userService.login(loginUserInput);
}

Expand Down

0 comments on commit 662afc0

Please sign in to comment.