From b98ed773272f1f7ddb0b75483901b8cbd921739b Mon Sep 17 00:00:00 2001 From: alma Date: Sun, 27 Apr 2025 18:31:21 +0200 Subject: [PATCH] courrier multi account --- app/courrier/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/courrier/page.tsx b/app/courrier/page.tsx index ea7f90a5..2f0bd350 100644 --- a/app/courrier/page.tsx +++ b/app/courrier/page.tsx @@ -129,7 +129,7 @@ export default function CourrierPage() { // Email accounts for the sidebar const [accounts, setAccounts] = useState([ { id: 'all-accounts', name: 'All', email: '', color: 'bg-gray-500' }, - { id: 'loading-account', name: 'Loading...', email: '', color: 'bg-blue-500', folders: mailboxes } + { id: 'loading-account', name: 'Loading...', email: '', color: 'bg-blue-500', folders: [] } ]); const [selectedAccount, setSelectedAccount] = useState(null);