fix push on undefined

This commit is contained in:
Violet Caulfield
2025-01-18 06:50:39 -06:00
parent ee510cbe17
commit 240ae707fe
2 changed files with 2 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ export default function Album(props: AlbumProps): React.JSX.Element {
track={track}
tracklist={tracks!}
index={index}
navigation={props.navigation}
/>
)

View File

@@ -63,6 +63,7 @@ export default function Playlist(props: PlaylistProps): React.JSX.Element {
return (
<Track
navigation={props.navigation}
track={track}
tracklist={tracks!}
index={index}