Skip to content

Commit

Permalink
Patched Duplicate Components on Embed Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ichenglin committed Jan 28, 2024
1 parent 1cc7f0a commit 987549e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utilities/display.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ export default class VerificationDisplay {
}
embed_group.push({
embeds: [group_embed],
files: (group_footer ? attachment_data : undefined),
components: (group_footer ? (component_data as any) : undefined)
files: (group_footer ? attachment_data : []),
components: (group_footer ? (component_data as any) : [])
});
}
return embed_group;
Expand Down

0 comments on commit 987549e

Please sign in to comment.