diff --git a/src/components/AddToPlaylist/index.tsx b/src/components/AddToPlaylist/index.tsx index bd9496a1..8fe56436 100644 --- a/src/components/AddToPlaylist/index.tsx +++ b/src/components/AddToPlaylist/index.tsx @@ -46,7 +46,12 @@ export default function AddToPlaylist({ {(source ?? tracks[0]) && ( - + @@ -154,7 +159,12 @@ function AddToPlaylistRow({ } }} > - + {playlist.Name ?? 'Untitled Playlist'} diff --git a/src/components/Context/index.tsx b/src/components/Context/index.tsx index a3d7bb44..9e741165 100644 --- a/src/components/Context/index.tsx +++ b/src/components/Context/index.tsx @@ -307,7 +307,12 @@ function ViewAlbumMenuRow({ album: album, stackNavigation }: MenuRowProps): Reac onPress={goToAlbum} pressStyle={{ opacity: 0.5 }} > - + {`Go to ${getItemName(album)}`} @@ -361,7 +366,13 @@ function ViewArtistMenuRow({ onPress={() => goToArtist(artist)} pressStyle={{ opacity: 0.5 }} > - + {`Go to ${getItemName(artist)}`} diff --git a/src/components/Global/components/Track/content.tsx b/src/components/Global/components/Track/content.tsx index 1bfde59b..be89e6e8 100644 --- a/src/components/Global/components/Track/content.tsx +++ b/src/components/Global/components/Track/content.tsx @@ -1,5 +1,5 @@ import React from 'react' -import { getToken, Theme, XStack, YStack } from 'tamagui' +import { Theme, XStack, YStack } from 'tamagui' import { Text } from '../../helpers/text' import { BaseItemDto } from '@jellyfin/sdk/lib/generated-client/models' import Icon from '../icon' @@ -119,7 +119,12 @@ export default function TrackRowContent({ > {showArtwork ? ( - + ) : ( - + ) diff --git a/src/components/Global/components/item-row.tsx b/src/components/Global/components/item-row.tsx index c92f6b43..3cc0e6cb 100644 --- a/src/components/Global/components/item-row.tsx +++ b/src/components/Global/components/item-row.tsx @@ -301,6 +301,7 @@ function HideableArtwork({ height={'$12'} width={'$12'} circular={item.Type === 'MusicArtist' || circular} + imageOptions={{ maxWidth: 140, maxHeight: 140, quality: 90 }} /> diff --git a/src/components/Global/components/list-group.tsx b/src/components/Global/components/list-group.tsx index 8ce0d1fc..003480b7 100644 --- a/src/components/Global/components/list-group.tsx +++ b/src/components/Global/components/list-group.tsx @@ -30,7 +30,11 @@ export default function ListGroup({ - + diff --git a/src/components/Player/mini-player.tsx b/src/components/Player/mini-player.tsx index eb5ce103..35a83a26 100644 --- a/src/components/Player/mini-player.tsx +++ b/src/components/Player/mini-player.tsx @@ -104,7 +104,7 @@ export default function Miniplayer(): React.JSX.Element { item={nowPlaying!.item} width={'$11'} height={'$11'} - imageOptions={{ maxWidth: 200, maxHeight: 200 }} + imageOptions={{ maxWidth: 120, maxHeight: 120 }} />