From d5bc1cd1d69b0304eaf9868d576e61058ba12323 Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 30 Sep 2022 13:22:46 +0200 Subject: [PATCH] chore: make amounts const --- src/helpers/defaultReminder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/defaultReminder.ts b/src/helpers/defaultReminder.ts index 98a2de845..3df722fb5 100644 --- a/src/helpers/defaultReminder.ts +++ b/src/helpers/defaultReminder.ts @@ -10,7 +10,7 @@ export const AMOUNTS_IN_SECONDS: { hours: 60 * 60, days: 60 * 60 * 24, months: 60 * 60 * 24 * 30, -} +} as const interface DefaultReminderSettings { enabled: boolean,