Skip to content

Commit

Permalink
fix: change song year type to number
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitkolhe committed Mar 25, 2024
1 parent b7ecfd9 commit 7b3edc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/songs/models/song.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const SongAPIResponseModel = z.object({
perma_url: z.string(),
image: z.string(),
language: z.string(),
year: z.string(),
year: z.number(),
play_count: z.string(),
explicit_content: z.string(),
list_count: z.string(),
Expand Down

0 comments on commit 7b3edc0

Please sign in to comment.