Skip to content

Commit

Permalink
fix: use pin icon (fixes #91)
Browse files Browse the repository at this point in the history
  • Loading branch information
ItzDerock committed Jan 25, 2023
1 parent b230855 commit ce2c91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generator/renderers/systemMessage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default async function renderSystemMessage(message: Message) {

case MessageType.ChannelPinnedMessage:
return (
<DiscordSystemMessage id={`m-${message.id}`} key={message.id} type="edit">
<DiscordSystemMessage id={`m-${message.id}`} key={message.id} type="pin">
<Highlight color={message.member?.roles.color?.hexColor}>{message.author.username}</Highlight> pinned{' '}
<i data-goto={message.reference?.messageId}>a message</i> to this channel.
{/* reactions */}
Expand Down

0 comments on commit ce2c91d

Please sign in to comment.