We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed26c87 commit 850c4d2Copy full SHA for 850c4d2
src/reminders/messages/simpleTaskReportMessage.ts
@@ -23,8 +23,8 @@ export const simpleTaskReportMessage = async ({
23
!hasUrgent && !hasUnassigned
24
? "Nothing urgent or unassigned today! 🐀🥂"
25
: "Check out all upcoming tasks [here.](https://github.com/orgs/CarletonComputerScienceSociety/projects/18) 👀";
26
- const urgentItemsLinkThreshold = 5
27
- const urgentItemsLinkBool = urgentItems.length <= urgentItemsLinkThreshold
+ const urgentItemsLinkThreshold = 5;
+ const urgentItemsLinkBool = urgentItems.length <= urgentItemsLinkThreshold;
28
return {
29
title: `Daily Task Reminder ${randomEmoji}`,
30
message: `${baseMessage}\n\n💡 **Fun Fact**: ${randomFact}.`,
0 commit comments