diff --git a/packages/ui/src/lib/detectDevServer.ts b/packages/ui/src/lib/detectDevServer.ts index a616c71c..17757e8a 100644 --- a/packages/ui/src/lib/detectDevServer.ts +++ b/packages/ui/src/lib/detectDevServer.ts @@ -110,11 +110,6 @@ function findDevServerAction(actions: OpenChamberProjectAction[]): OpenChamberPr } } - // Fallback: return the first action if there's only one - if (actions.length === 1) { - return actions[0]; - } - return null; }