We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90224e9 commit f8c09c1Copy full SHA for f8c09c1
1 file changed
src/backend/src/services/tasks.services.ts
@@ -282,7 +282,7 @@ export default class TasksService {
282
lt: endOfDay
283
},
284
status: {
285
- not: "DONE"
+ not: 'DONE'
286
}
287
288
include: {
@@ -321,9 +321,9 @@ export default class TasksService {
321
const messageBlock = tasks
322
.map(
323
(task) =>
324
- `${usersToSlackIds(task.assignees ?? [])} Reminder: ${
325
- task.title
326
- } due tomorrow at ${task.deadline.toTimeString()} in project ${task.wbsElement?.name}`
+ `${usersToSlackIds(task.assignees ?? [])} Reminder: ${task.title} due tomorrow in project ${
+ task.wbsElement?.name
+ }`
327
)
328
.join('\n\n');
329
0 commit comments