chore: lower default history page size
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
kieran 2024-07-22 11:30:15 +01:00
parent b083223a2c
commit 86f13c171d
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -147,7 +147,7 @@ export class NostrStreamProvider implements StreamProvider {
return `${this.url}clip/${id}/${clipId}`;
}
async history(page = 0, pageSize = 100) {
async history(page = 0, pageSize = 20) {
return await this.#getJson<BalanceHistoryResult>("GET", `history?page=${page}&pageSize=${pageSize}`);
}