Skip to content

Commit 850c4d2

Browse files
committed
linting fix
1 parent ed26c87 commit 850c4d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reminders/messages/simpleTaskReportMessage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export const simpleTaskReportMessage = async ({
2323
!hasUrgent && !hasUnassigned
2424
? "Nothing urgent or unassigned today! 🐀🥂"
2525
: "Check out all upcoming tasks [here.](https://github.com/orgs/CarletonComputerScienceSociety/projects/18) 👀";
26-
const urgentItemsLinkThreshold = 5
27-
const urgentItemsLinkBool = urgentItems.length <= urgentItemsLinkThreshold
26+
const urgentItemsLinkThreshold = 5;
27+
const urgentItemsLinkBool = urgentItems.length <= urgentItemsLinkThreshold;
2828
return {
2929
title: `Daily Task Reminder ${randomEmoji}`,
3030
message: `${baseMessage}\n\n💡 **Fun Fact**: ${randomFact}.`,

0 commit comments

Comments
 (0)