Skip to content

Commit

Permalink
Remove console logging version number
Browse files Browse the repository at this point in the history
Added it when testing using no CORS proxy, forgot to remove it.
  • Loading branch information
Bergbok committed Mar 18, 2024
1 parent 03d4c5d commit 43bb4e2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion CustomApps/playlist-tags/src/extensions/extension.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 43bb4e2

Please sign in to comment.