Skip to content

Commit 733bf75

Browse files
authored
chore: remove extra semicolon to fix linter
1 parent 7f693aa commit 733bf75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resource.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Resource extends BaseResource {
6767
}
6868

6969
async count(filters = null) {
70-
return this.MongooseModel.find(convertFilter(filters)).estimatedDocumentCount();
70+
return this.MongooseModel.find(convertFilter(filters)).estimatedDocumentCount()
7171
}
7272

7373
async find(filters = {}, { limit = 20, offset = 0, sort = {} }: FindOptions) {

0 commit comments

Comments
 (0)