Browse Source

enh: later today 3 hours later

Signed-off-by: Christopher Ng <chrng8@gmail.com>
Christopher Ng 10 months ago
parent
commit
07c0f7e25b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/files_reminders/src/shared/utils.ts

+ 1 - 1
apps/files_reminders/src/shared/utils.ts

@@ -36,7 +36,7 @@ export const getDateTime = (dateTime: DateTimePreset): Date => {
 			const hour = moment().get('hour')
 			const later = moment()
 				.startOf('day')
-				.add(hour + 2, 'hour')
+				.add(hour + 3, 'hour')
 			return later.toDate()
 		},