mirror of
https://iceshrimp.dev/iceshrimp/akkoma-fe.git
synced 2025-12-16 16:33:03 +01:00
Fix pagination
This commit is contained in:
parent
8e049297ff
commit
0ba34eeca5
1 changed files with 1 additions and 1 deletions
|
|
@ -540,7 +540,7 @@ const fetchTimeline = ({
|
||||||
params.push(['with_move', withMove])
|
params.push(['with_move', withMove])
|
||||||
}
|
}
|
||||||
|
|
||||||
params.push(['count', 20])
|
params.push(['limit', 20])
|
||||||
params.push(['with_muted', withMuted])
|
params.push(['with_muted', withMuted])
|
||||||
|
|
||||||
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')
|
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue