From e7bad87217032a38f4e546df0f9a4093f19d0ce9 Mon Sep 17 00:00:00 2001 From: Kha Nguyen Date: Thu, 17 Jul 2025 19:17:21 -0500 Subject: [PATCH] fix: remove wrong check causing new project to show old medias --- apps/web/src/app/editor/[project_id]/page.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/web/src/app/editor/[project_id]/page.tsx b/apps/web/src/app/editor/[project_id]/page.tsx index 4be4d9cc..ad8561ac 100644 --- a/apps/web/src/app/editor/[project_id]/page.tsx +++ b/apps/web/src/app/editor/[project_id]/page.tsx @@ -47,10 +47,6 @@ export default function Editor() { const initProject = async () => { if (!projectId) return; - if (activeProject?.id === projectId) { - return; - } - if (handledProjectIds.current.has(projectId)) { return; }