From 708cc442b640071f49e36708b0712d853b24d319 Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Thu, 28 Nov 2024 10:05:26 -0600 Subject: [PATCH] text changes --- components/Artist/component.tsx | 2 +- components/Global/avatar.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Artist/component.tsx b/components/Artist/component.tsx index 6eb017ca..bb804cb2 100644 --- a/components/Artist/component.tsx +++ b/components/Artist/component.tsx @@ -22,7 +22,7 @@ export default function Artist({ artistId, artistName }: { artistId: string, art renderItem={({ item: album }) => { return ( - { album.ProductionYear?.toLocaleString() ?? "" } + { album.ProductionYear?.toString() ?? "" } ) }} diff --git a/components/Global/avatar.tsx b/components/Global/avatar.tsx index 37b0cc31..3045ed4a 100644 --- a/components/Global/avatar.tsx +++ b/components/Global/avatar.tsx @@ -32,7 +32,7 @@ export default function Avatar(props: AvatarProps): React.JSX.Element { {props.children} )} { props.subheading && ( - { props.subheading } + { props.subheading } )} )