diff --git a/backend/src/plugins/Reminders/commands/RemindCmd.ts b/backend/src/plugins/Reminders/commands/RemindCmd.ts index c4655771..f9718b0b 100644 --- a/backend/src/plugins/Reminders/commands/RemindCmd.ts +++ b/backend/src/plugins/Reminders/commands/RemindCmd.ts @@ -63,14 +63,11 @@ export const RemindCmd = remindersCmd({ const msUntilReminder = reminderTime.diff(now); const timeUntilReminder = humanizeDuration(msUntilReminder, { largest: 2, round: true }); - const prettyReminderTime = (await timeAndDate.inMemberTz(msg.author.id, reminderTime)).format( - pluginData.getPlugin(TimeAndDatePlugin).getDateFormat("pretty_datetime"), - ); sendSuccessMessage( pluginData, msg.channel, - `I will remind you in **${timeUntilReminder}** at **${prettyReminderTime}**`, + `I will remind you in **${timeUntilReminder}** at `, ); }, });