decrease font weight of JoinedArtists display

This commit is contained in:
jeffvli
2026-01-17 17:46:51 -08:00
parent 9b97a3fa61
commit 9f9d685353
@@ -114,7 +114,7 @@ export const JoinedArtists = ({
{artist.id ? ( {artist.id ? (
<Text <Text
component={Link} component={Link}
fw={600} fw={500}
isLink isLink
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, { to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
albumArtistId: artist.id, albumArtistId: artist.id,
@@ -124,7 +124,7 @@ export const JoinedArtists = ({
{artist.name} {artist.name}
</Text> </Text>
) : ( ) : (
<Text fw={600} {...linkProps}> <Text fw={500} {...linkProps}>
{artist.name} {artist.name}
</Text> </Text>
)} )}
@@ -156,7 +156,7 @@ export const JoinedArtists = ({
return ( return (
<Text <Text
component={Link} component={Link}
fw={600} fw={500}
isLink isLink
key={`${artist.id}-${index}`} key={`${artist.id}-${index}`}
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, { to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
@@ -169,7 +169,7 @@ export const JoinedArtists = ({
); );
} }
return ( return (
<Text fw={600} key={`${artist.name}-${index}`} {...linkProps}> <Text fw={500} key={`${artist.name}-${index}`} {...linkProps}>
{text} {text}
</Text> </Text>
); );
@@ -183,7 +183,7 @@ export const JoinedArtists = ({
{artist.id ? ( {artist.id ? (
<Text <Text
component={Link} component={Link}
fw={600} fw={500}
isLink isLink
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, { to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
albumArtistId: artist.id, albumArtistId: artist.id,