This commit is contained in:
Julian 2022-08-27 13:25:31 -04:00
parent c0d8ad62cb
commit fc1e3d5e2f
Signed by: NotNite
GPG Key ID: BD91A5402CCEB08A
1 changed files with 2 additions and 3 deletions

View File

@ -22,8 +22,6 @@ async function listReminders(interaction: CommandInteraction) {
} }
}); });
console.log(userReminders);
await interaction.createMessage({ await interaction.createMessage({
embeds: [ embeds: [
{ {
@ -38,7 +36,8 @@ async function listReminders(interaction: CommandInteraction) {
}) })
.join("\n") .join("\n")
} }
] ],
flags: Constants.MessageFlags.EPHEMERAL
}); });
} }