fix: timestamp rendering issues

This commit is contained in:
syntaxbullet
2025-12-23 18:36:22 +01:00
parent fbd2bd990f
commit 58ea8b92f1
2 changed files with 24 additions and 20 deletions

View File

@@ -51,11 +51,11 @@ export const pay = createCommand({
const embed = new EmbedBuilder()
.setTitle("💸 Transfer Successful")
.setDescription(`Successfully sent ** ${amount}** Astral Units to < @${targetUser.id}>.`)
.setDescription(`Successfully sent ** ${amount}** Astral Units to <@${targetUser.id}>.`)
.setColor("Green")
.setTimestamp();
await interaction.editReply({ embeds: [embed] });
await interaction.editReply({ embeds: [embed], content: `<@${receiverId}>` });
} catch (error: any) {
if (error instanceof UserError) {