Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hwangsihu committed Oct 25, 2024
1 parent e25c67e commit 390dade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/music/Search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default class Search extends Command {
.setCustomId('select-track')
.setPlaceholder(ctx.locale('cmd.search.select'))
.addOptions(
response.tracks.slice(0, 5).map((track: Track, index: number) => ({
response.tracks.slice(0, 10).map((track: Track, index: number) => ({
label: `${index + 1}. ${track.info.title}`,
description: track.info.author,
value: index.toString(),
Expand Down

0 comments on commit 390dade

Please sign in to comment.