diff --git a/components/email.tsx b/components/email.tsx index bd74282..5865cb7 100644 --- a/components/email.tsx +++ b/components/email.tsx @@ -82,7 +82,7 @@ export function Email() { // Fetch emails from all accounts in parallel const emailPromises = accounts.map(async (account) => { try { - const url = `/api/courrier?folder=INBOX&page=1&perPage=5&accountId=${encodeURIComponent(account.id)}${forceRefresh ? '&refresh=true' : ''}`; + const url = `/api/courrier?folder=INBOX&page=1&perPage=33&accountId=${encodeURIComponent(account.id)}${forceRefresh ? '&refresh=true' : ''}`; const response = await fetch(url); if (!response.ok) { const errorMsg = `Failed to fetch emails for ${account.email}`;