mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Merge pull request #152 from oceanprotocol/fix/paginationSearch
correct number of items on page
This commit is contained in:
commit
7af9ac6974
@ -13,7 +13,7 @@ export function getSearchQuery(
|
||||
): SearchQuery {
|
||||
return {
|
||||
page: Number(page) || 1,
|
||||
offset: Number(offset) || 20,
|
||||
offset: Number(offset) || 21,
|
||||
query: {
|
||||
text,
|
||||
tags: tags ? [tags] : undefined,
|
||||
|
Loading…
Reference in New Issue
Block a user