diff --git a/src/frontend/src/components/EdictBoard.tsx b/src/frontend/src/components/EdictBoard.tsx
index a841cba..9e67c46 100644
--- a/src/frontend/src/components/EdictBoard.tsx
+++ b/src/frontend/src/components/EdictBoard.tsx
@@ -387,7 +387,6 @@ export default function EdictBoard() {
const reviewCount = topLevelTasks.filter(t => t.status === 'review').length;
const archivedCount = topLevelTasks.filter(t => t.archived).length;
- if (!selectedProjectId) return ;
if (v2tasksLoading && tasks.length === 0) return ;
return (
@@ -424,7 +423,8 @@ export default function EdictBoard() {
}}
>
- {Object.entries(projects).map(([pid, info]: [string, any]) => (
+
+ {Object.entries(projects).filter(([pid]) => !pid.startsWith('e2e-')).map(([pid, info]: [string, any]) => (
))}