diff --git a/src/renderer/features/albums/components/album-detail-header.tsx b/src/renderer/features/albums/components/album-detail-header.tsx
index 7bb8d8d7..357bec6f 100644
--- a/src/renderer/features/albums/components/album-detail-header.tsx
+++ b/src/renderer/features/albums/components/album-detail-header.tsx
@@ -3,7 +3,7 @@ import { forwardRef, Fragment, Ref } from 'react';
import { generatePath, useParams } from 'react-router';
import { Link } from 'react-router-dom';
import { LibraryItem, ServerType } from '/@/renderer/api/types';
-import { Rating, Text } from '/@/renderer/components';
+import { Button, Rating, Text } from '/@/renderer/components';
import { useAlbumDetail } from '/@/renderer/features/albums/queries/album-detail-query';
import { LibraryHeader, useUpdateRating } from '/@/renderer/features/shared';
import { useContainerQuery } from '/@/renderer/hooks';
@@ -104,29 +104,18 @@ export const AlbumDetailHeader = forwardRef(
overflow: 'hidden',
}}
>
- {detailQuery?.data?.albumArtists.map((artist, index) => (
-
- {index > 0 && (
-
- •
-
- )}
-
- {artist.name}
-
-
+ {detailQuery?.data?.albumArtists.map((artist) => (
+
))}