diff --git a/src/modules/search/infrastructure/FakeLeafletSearchService.ts b/src/modules/search/infrastructure/FakeLeafletSearchService.ts index 5d77d0cc..4dc5c189 100644 --- a/src/modules/search/infrastructure/FakeLeafletSearchService.ts +++ b/src/modules/search/infrastructure/FakeLeafletSearchService.ts @@ -32,7 +32,8 @@ export class FakeLeafletSearchService implements ILeafletSearchService { const limitedResults = limit ? results.slice(0, limit) : results; // Simulate cursor for pagination (fake implementation) - const nextCursor = limit && results.length > limit ? 'fake-cursor-next' : undefined; + const nextCursor = + limit && results.length > limit ? 'fake-cursor-next' : undefined; return ok({ documents: limitedResults,