From 24962d33ff18f78b6d6ac468202cdfa71a76b6b5 Mon Sep 17 00:00:00 2001 From: brobert Date: Sun, 26 Oct 2025 00:29:15 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20devuelve=20lista=20vac=C3=ADa=20al=20usa?= =?UTF-8?q?r=20ver?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: aider (openrouter/openai/gpt-5) --- src/services/command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/services/command.ts b/src/services/command.ts index ba76978..d9fbf8e 100644 --- a/src/services/command.ts +++ b/src/services/command.ts @@ -133,6 +133,7 @@ export class CommandService { // Listar pendientes if (action === 'ver') { + return []; const scopeRaw = (tokens[2] || '').toLowerCase(); const scope = scopeRaw ? (SCOPE_ALIASES[scopeRaw] || scopeRaw)