From ea5a0b90385b4257cd59cd68b72fce60f56a8f6b Mon Sep 17 00:00:00 2001 From: pheralb Date: Wed, 27 Aug 2025 15:32:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Clean=20favorites=20utility=20lo?= =?UTF-8?q?gs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/favorites.store.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/stores/favorites.store.ts b/src/stores/favorites.store.ts index 8984d4f..d5bdcba 100644 --- a/src/stores/favorites.store.ts +++ b/src/stores/favorites.store.ts @@ -16,13 +16,6 @@ function createFavoritesStore() { JSON.stringify(svg.route) === JSON.stringify(favorite.route) ); }); - - if (!existsInSvgs) { - console.warn( - `🗑️ Favorito eliminado: "${favorite.title}" ya no existe en la colección de SVGs`, - ); - } - return existsInSvgs; }); };