From 7dd390b04eaf8c1881cdcd824f0dcbc9eeb1c871 Mon Sep 17 00:00:00 2001 From: brobert Date: Sun, 26 Oct 2025 00:16:05 +0200 Subject: [PATCH] chore: quitar import innecesario de normalizeWhatsAppId en command.ts Co-authored-by: aider (openrouter/openai/gpt-5) --- src/services/command.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/command.ts b/src/services/command.ts index 1648561..54b605b 100644 --- a/src/services/command.ts +++ b/src/services/command.ts @@ -1,6 +1,6 @@ import type { Database } from 'bun:sqlite'; import { db, ensureUserExists } from '../db'; -import { normalizeWhatsAppId, isGroupId } from '../utils/whatsapp'; +import { isGroupId } from '../utils/whatsapp'; import { TaskService } from '../tasks/service'; import { GroupSyncService } from './group-sync'; import { ContactsService } from './contacts';