Skip to content

Commit

Permalink
chore: testing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
BeanieMen committed Oct 28, 2024
1 parent 1d3da3d commit 6a4faf8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/helpers/task-update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ export async function updateTaskReminder(context: ContextPlugin, repo: ListForOr
});

const disqualificationTimeDifference = disqualification - warning;

console.log(disqualificationTimeDifference);
console.log(prioritySpeed ? disqualificationTimeDifference / priorityLevel : disqualificationTimeDifference);
if (lastReminderComment) {
const lastReminderTime = DateTime.fromISO(lastReminderComment.created_at);
mostRecentActivityDate = lastReminderTime > mostRecentActivityDate ? lastReminderTime : mostRecentActivityDate;
Expand Down

0 comments on commit 6a4faf8

Please sign in to comment.