Skip to content

Commit

Permalink
Merge branch 'develop' into preview
Browse files Browse the repository at this point in the history
  • Loading branch information
tuanddd committed Mar 26, 2024
2 parents aa19275 + b2af52c commit 1a1a1a9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/commands/inbox/index/processor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ export async function render(userDiscordId: string, ctx: Context) {
.setCustomId("inbox_view-activity")
.addOptions(
list.map((a, i: number) => ({
emoji: getEmoji(`NUM_${i + 1}` as EmojiKey),
emoji:
i === 9
? getEmoji("CHAT" as EmojiKey)
: getEmoji(`NUM_${i + 1}` as EmojiKey),
label: `🟩 ${a.content}`,
value: `value-${i}-${a.content}`,
})),
Expand Down

0 comments on commit 1a1a1a9

Please sign in to comment.