diff --git a/.env.local b/.env.local
index 28a27b0..d0e6a86 100644
--- a/.env.local
+++ b/.env.local
@@ -1 +1 @@
-NEXT_PUBLIC_COMMIT_SHA=f1957c7
+NEXT_PUBLIC_COMMIT_SHA=b59deee
diff --git a/app/album/[id]/page.tsx b/app/album/[id]/page.tsx
index 34f1f1a..009ddc1 100644
--- a/app/album/[id]/page.tsx
+++ b/app/album/[id]/page.tsx
@@ -137,13 +137,13 @@ export default function AlbumPage() {
// Dynamic cover art URLs based on image size
const getMobileCoverArtUrl = () => {
return album.coverArt && api
- ? api.getCoverArtUrl(album.coverArt, 600)
+ ? api.getCoverArtUrl(album.coverArt, 300)
: '/default-user.jpg';
};
const getDesktopCoverArtUrl = () => {
return album.coverArt && api
- ? api.getCoverArtUrl(album.coverArt, 600)
+ ? api.getCoverArtUrl(album.coverArt, 300)
: '/default-user.jpg';
};
@@ -159,8 +159,8 @@ export default function AlbumPage() {