diff options
Diffstat (limited to 'bot/src/commands/userinfo.js')
| -rw-r--r-- | bot/src/commands/userinfo.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/commands/userinfo.js b/bot/src/commands/userinfo.js index 01b7577..b51ef0a 100644 --- a/bot/src/commands/userinfo.js +++ b/bot/src/commands/userinfo.js @@ -16,6 +16,6 @@ export default { { name: 'Create and Join Times', value: `**Created At:** ${interaction.member.user.createdAt.toUTCString()}\n**Joined Guild At:** ${interaction.member.joinedAt.toUTCString()}`} ) .setColor(abEmbedColour); - return await interaction.reply({embeds: [userEmbed]}); + return await interaction.reply({ embeds: [userEmbed] }); } }; |
