From 7869d05e1efbc6fece485a7c2494953a0b5882e7 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Tue, 10 Jun 2025 09:44:27 -0700 Subject: [PATCH] Remove log --- src/routes/api/lastfm/+server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/api/lastfm/+server.ts b/src/routes/api/lastfm/+server.ts index a290fd2..ca17a5f 100644 --- a/src/routes/api/lastfm/+server.ts +++ b/src/routes/api/lastfm/+server.ts @@ -21,7 +21,7 @@ export const GET: RequestHandler = async ({ url }) => { // const albums = await getWeeklyAlbumChart(client, USERNAME) const albums = await getRecentAlbums(client, USERNAME, ALBUM_LIMIT) - console.log(albums) + // console.log(albums) const enrichedAlbums = await Promise.all( albums.slice(0, ALBUM_LIMIT).map(async (album) => { try {