chore(e2e): fix failing memory lane tests

This commit is contained in:
Ben Beckford 2026-06-29 12:18:44 -07:00
parent f1247e2487
commit a7755346a7

View file

@ -30,7 +30,7 @@ export const setupMemoryMockApiRoutes = async (
return route.fulfill({
status: 200,
contentType: 'application/json',
json: activeMemories,
json: { total: activeMemories.length, items: activeMemories, hasNextPage: false },
});
}