Skip to content

Commit

Permalink
fix(notifications): default schedule time corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
mzdm committed May 5, 2023
1 parent 5873b0e commit b8204bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/services/notifications/notification_type.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ enum NotificationType {
TimeOfDay get defaultScheduleTime {
switch (this) {
case NotificationType.moodReminder:
return const TimeOfDay(hour: 9, minute: 0);
case NotificationType.sleepRateReminder:
return const TimeOfDay(hour: 19, minute: 0);
case NotificationType.sleepRateReminder:
return const TimeOfDay(hour: 9, minute: 0);
}
}

Expand Down

0 comments on commit b8204bd

Please sign in to comment.