Skip to content

Commit

Permalink
Simplify the value for ONE_HOUR_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 55a928a commit 206c2b9
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,6 +1,6 @@
export const ONE_SEC_IN_MILLISECONDS = 1000
export const ONE_MINUTE_IN_SECONDS = 60
export const ONE_HOUR_IN_SECONDS = 3600
export const ONE_HOUR_IN_SECONDS = ONE_MINUTE_IN_SECONDS * 60
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
Expand Down

0 comments on commit 206c2b9

Please sign in to comment.