Skip to content

Commit

Permalink
fix(lint): fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Apr 8, 2024
1 parent 61b0cff commit d1960b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ export class UserService extends ServiceBase<UserListResponse, UserList> impleme
verficationResponse.status.code,
verficationResponse.status.message,
verficationResponse.status.id)
);
);
usersList = _.filter(usersList, (item) => (item.id != userID));
}
}
Expand Down Expand Up @@ -2792,7 +2792,7 @@ export class UserService extends ServiceBase<UserListResponse, UserList> impleme
* @param entity entity name
* @param action resource action
*/
async createMetadata<T extends { id?: string, meta?: Meta }>(
async createMetadata<T extends { id?: string; meta?: Meta }>(
res: T | T[],
action: string,
subject?: Subject
Expand Down

0 comments on commit d1960b8

Please sign in to comment.