Skip to content

Commit

Permalink
lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pauljohanneskraft committed Nov 10, 2024
1 parent 496d466 commit 3ab1f00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functions/src/services/user/userService.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class MockUserService implements UserService {
return
}

async updateClaims(userId: String): Promise<void> {
async updateClaims(userId: string): Promise<void> {
return
}

Expand Down
2 changes: 1 addition & 1 deletion functions/src/services/user/userService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export interface UserService {

getAuth(userId: string): Promise<UserAuth>
updateAuth(userId: string, auth: UserAuth): Promise<void>
updateClaims(userId: String): Promise<void>
updateClaims(userId: string): Promise<void>

// Invitations

Expand Down

0 comments on commit 3ab1f00

Please sign in to comment.