The searcher returns up to 50 results and the frontend paginates at 10 per page, but SearchService.search() defaults to limit=5. Any caller that omits limit gets half a page of results.
File: backend/search_service.py L22
Fix: Change the default to limit=10.
The searcher returns up to 50 results and the frontend paginates at 10 per page, but
SearchService.search()defaults tolimit=5. Any caller that omitslimitgets half a page of results.File:
backend/search_service.pyL22Fix: Change the default to
limit=10.