From 348df45c082a883255c5dc2ba0983e6a216ea89b Mon Sep 17 00:00:00 2001 From: Florian <45694132+flo-bit@users.noreply.github.com> Date: Sat, 14 Feb 2026 19:00:11 +0100 Subject: [PATCH] fix cards loading --- src/lib/website/load.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/website/load.ts b/src/lib/website/load.ts index b8989715..754c92aa 100644 --- a/src/lib/website/load.ts +++ b/src/lib/website/load.ts @@ -66,7 +66,7 @@ export async function loadData( } const [cards, mainPublication, pages, profile] = await Promise.all([ - listRecords({ did, collection: 'app.blento.card' }).catch((e) => { + listRecords({ did, collection: 'app.blento.card', limit: 0 }).catch((e) => { console.error('error getting records for collection app.blento.card', e); return [] as Awaited>; }),