Skip to content

Commit

Permalink
Adjustment to formatUserData
Browse files Browse the repository at this point in the history
  • Loading branch information
prathercc committed May 14, 2024
1 parent be07d58 commit 83fe615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ export const formatUserData = ({
roleNames = [],
}: FormatUserData) => {
return `${userName ? `Username: ${userName}\n` : ""}${
displayName ? `Global Name: ${displayName}\n` : ""
}${guildNickname ? `Nickname: ${guildNickname}\n` : ""}${
displayName ? `Display Name: ${displayName}\n` : ""
}${guildNickname ? `Server Nickname: ${guildNickname}\n` : ""}${
userId ? `User ID: ${userId}` : ""
}${joinedAt ? `\nJoined Server: ${joinedAt}` : ""}${
roleNames.length ? `\n\nRoles: ${roleNames.join(", ")}` : ""
Expand Down

0 comments on commit 83fe615

Please sign in to comment.