Increase limit for article list

Needs pagination
This commit is contained in:
Râu Cao 2024-10-26 11:32:31 +02:00
parent f1d6ddbc84
commit 0b1eca87b2
Signed by: raucao
GPG Key ID: 37036C356E56CC51

View File

@ -53,7 +53,7 @@ export async function fetchArticlesByAuthor(pubkey: string) {
const events = await fetchWithTimeout([{
authors: [pubkey],
kinds: [30023],
limit: 10,
limit: 210,
}]) as NostrEvent[];
return events;