Fix TypeScript error: add type annotation for implicit any parameter

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
mazemaze 2025-12-18 21:32:04 +09:00
parent 0f13aee7fb
commit 5e49c0f18d
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ export async function GET(
}, },
}) })
const songs = songGenres.map((sg) => sg.song) const songs = songGenres.map((sg: (typeof songGenres)[number]) => sg.song)
return NextResponse.json({ return NextResponse.json({
genre, genre,