diff --git a/app/Domains/Contact/ManageReminders/Services/RescheduleContactReminderForChannel.php b/app/Domains/Contact/ManageReminders/Services/RescheduleContactReminderForChannel.php index feabaf2c809..4112b1a2202 100644 --- a/app/Domains/Contact/ManageReminders/Services/RescheduleContactReminderForChannel.php +++ b/app/Domains/Contact/ManageReminders/Services/RescheduleContactReminderForChannel.php @@ -58,7 +58,9 @@ public function execute(array $data): void if ($this->contactReminder->type !== ContactReminder::TYPE_ONE_TIME) { $this->schedule(); } else { - $this->contactReminder->delete(); + DB::table('contact_reminder_scheduled') + ->where('id', $this->data['contact_reminder_scheduled_id']) + ->delete(); } }