refactor: 🔥 remove unused constants

This commit is contained in:
ThatOneCalculator 2023-12-07 10:44:23 -08:00
parent 73cf3b64e5
commit 9f3d0a2656
No known key found for this signature in database
GPG Key ID: 8703CACD01000000

View File

@ -14,10 +14,8 @@ export const MAX_CAPTION_TEXT_LENGTH = Math.min(
);
export const SECOND = 1000;
export const SEC = 1000; // why do we need this duplicate here?
export const MINUTE = 60 * SEC;
export const MIN = 60 * SEC; // why do we need this duplicate here?
export const HOUR = 60 * MIN;
export const MINUTE = 60 * SECOND;
export const HOUR = 60 * MINUTE;
export const DAY = 24 * HOUR;
export const USER_ONLINE_THRESHOLD = 10 * MINUTE;