From 737a61fd416a96b5655b677c0de6abff5762af78 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Mon, 3 Feb 2025 21:25:18 -0800 Subject: [PATCH] add signature and default return for isNotificationScheduled --- src/services/NotificationService.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/services/NotificationService.ts b/src/services/NotificationService.ts index 51e56af..2f6f6a5 100644 --- a/src/services/NotificationService.ts +++ b/src/services/NotificationService.ts @@ -102,7 +102,8 @@ export class NotificationService { * @param shuttleId * @param stopId */ - public isNotificationScheduled({ deviceId, shuttleId, stopId }: ScheduledNotificationData) { + public isNotificationScheduled({ deviceId, shuttleId, stopId }: ScheduledNotificationData): boolean { + return false; } public cancelAllNotifications(deviceId: string) {