Skip to content

Commit

Permalink
remove stray semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
Puyodead1 committed Sep 12, 2023
1 parent c06c72a commit 7fc50fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/messaging/Message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ function Message({ message, isHeader, isSending, isFailed }: Props) {
{"embeds" in message
? message.embeds.map((embed, index) => (
<Fragment key={index}>
<MessageEmbed key={index} embed={embed} contextMenuItems={contextMenuItems} />;
<MessageEmbed key={index} embed={embed} contextMenuItems={contextMenuItems} />
</Fragment>
))
: null}
Expand Down

0 comments on commit 7fc50fa

Please sign in to comment.