mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-05 20:59:49 +00:00
paginate input fixed in discover
This commit is contained in:
parent
b3e993dad0
commit
680815197d
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ const useCatalog = (urlParams, queryParams) => {
|
|||
return { title, options, selected, renderLabelText, onSelect };
|
||||
})
|
||||
];
|
||||
const paginateInput = state.discover.load_next !== null || state.discover.load_prev !== null || state.discover.selected.some(({ name }) => name === 'skip') ?
|
||||
const paginateInput = state.discover.load_next !== null || state.discover.load_prev !== null || state.discover.selected.path.extra.some(([name]) => name === 'skip') ?
|
||||
{
|
||||
selected: state.discover.selected.path.extra.reduce((page, [name, value]) => {
|
||||
if (name === 'skip') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue