Skip to content

Commit

Permalink
Change default year value to number
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Escalona committed Oct 1, 2024
1 parent 3a3867d commit 69ba9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/ViewTrackDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function ViewTrackDetails() {
artists: track.artists,
album: track.album ?? '',
genres: track.genres,
year: track.year ?? undefined,
year: track.year ?? 0,
duration: track.duration,
track: track.track ?? { no: 0, of: 0 },
disk: track.disk ?? { no: 0, of: 0 },
Expand Down

0 comments on commit 69ba9b9

Please sign in to comment.