2
2
mirror of https://github.com/mastodon/mastodon synced 2025-04-12 00:56:38 +02:00

Fix WebUI erroneously stopping to offer expanding search results after second page ()

This commit is contained in:
Claire 2025-01-02 11:58:00 +01:00 committed by GitHub
parent f9fef9864a
commit 68bfa7ae3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -56,7 +56,7 @@ export const expandSearch = createDataLoadingThunk(
return apiGetSearch({
q,
type,
limit: 11,
limit: 10,
offset,
});
},