text changes

This commit is contained in:
Violet Caulfield
2024-11-28 10:05:26 -06:00
parent c4a37c49a9
commit 708cc442b6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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>
)
}}
+1 -1
View File
@@ -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>
)