From 43bb4e2935770bb94211a8cd916f63f188fc4e44 Mon Sep 17 00:00:00 2001 From: Bergbok <66174189+Bergbok@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:07:50 +0200 Subject: [PATCH] Remove console logging version number Added it when testing using no CORS proxy, forgot to remove it. --- CustomApps/playlist-tags/src/extensions/extension.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/CustomApps/playlist-tags/src/extensions/extension.tsx b/CustomApps/playlist-tags/src/extensions/extension.tsx index 8d78df0..65cfefe 100644 --- a/CustomApps/playlist-tags/src/extensions/extension.tsx +++ b/CustomApps/playlist-tags/src/extensions/extension.tsx @@ -13,7 +13,6 @@ function checkForUpdate() { fetch(url) .then(response => response.json()) .then(package_JSON => { - console.log(package_JSON.version); if (package_JSON.version !== CURRENT_VERSION) { Spicetify.showNotification('An update is available for Playlist Tags'); } else {