Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
KevLehman authored and ggazzo committed Sep 6, 2024
1 parent b088144 commit 3fac30c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/meteor/server/models/raw/Rooms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2135,10 +2135,7 @@ export class RoomsRaw extends BaseRaw<IRoom> implements IRoomsModel {
{
$facet: {
totalCount: [{ $count: 'count' }],
paginatedResults: [
{ $skip: options?.skip || 0 },
{ $limit: options?.limit || 50 },
],
paginatedResults: [{ $skip: options?.skip || 0 }, { $limit: options?.limit || 50 }],
},
},
]);
Expand Down

0 comments on commit 3fac30c

Please sign in to comment.