Skip to content

Commit 9a001fb

Browse files
Update src/repository/userMongoDBRepository.ts
Co-authored-by: William Calderipe <[email protected]>
1 parent 9fba2fc commit 9a001fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/repository/userMongoDBRepository.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class UserMongoDBRepository
1111
}
1212

1313
async findOneById(id: string) {
14-
return await this.findOne({ _id: id });
14+
return this.findOne({ _id: id });
1515
}
1616

1717
async findOneByEmail(email: string) {

0 commit comments

Comments
 (0)