Skip to content

Commit

Permalink
Simplify the value for ONE_DAY_IN_SECONDS
Browse files Browse the repository at this point in the history
Co-authored-by: Piotr Kacprzyk <[email protected]>
  • Loading branch information
kkosiorowska and ioay authored Jan 25, 2024
1 parent 517812f commit 55a928a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dapp/src/constants/time.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export const ONE_SEC_IN_MILLISECONDS = 1000
export const ONE_MINUTE_IN_SECONDS = 60
export const ONE_HOUR_IN_SECONDS = 3600
export const ONE_DAY_IN_SECONDS = 86400
export const ONE_DAY_IN_SECONDS = ONE_HOUR_IN_SECONDS * 24
export const ONE_WEEK_IN_SECONDS = ONE_DAY_IN_SECONDS * 7
export const ONE_MONTH_IN_SECONDS = ONE_DAY_IN_SECONDS * 30
export const ONE_YEAR_IN_SECONDS = ONE_DAY_IN_SECONDS * 365

0 comments on commit 55a928a

Please sign in to comment.