mirror of
https://github.com/Jellify-Music/App.git
synced 2026-05-05 19:00:02 -05:00
text changes
This commit is contained in:
@@ -22,7 +22,7 @@ export default function Artist({ artistId, artistName }: { artistId: string, art
|
||||
renderItem={({ item: album }) => {
|
||||
return (
|
||||
<Avatar itemId={album.Id!} subheading={album.Name}>
|
||||
{ album.ProductionYear?.toLocaleString() ?? "" }
|
||||
{ album.ProductionYear?.toString() ?? "" }
|
||||
</Avatar>
|
||||
)
|
||||
}}
|
||||
|
||||
@@ -32,7 +32,7 @@ export default function Avatar(props: AvatarProps): React.JSX.Element {
|
||||
<Text>{props.children}</Text>
|
||||
)}
|
||||
{ props.subheading && (
|
||||
<Text>{ props.subheading }</Text>
|
||||
<Text bold>{ props.subheading }</Text>
|
||||
)}
|
||||
</YStack>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user