Merge pull request #48 from Flow-Works/thin-dev-branch
[🐛] Fixed weird time formatting
This commit is contained in:
commit
9ed24fdf8c
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ export const run = (element: HTMLDivElement): void => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const refreshClock = (): string => {
|
const refreshClock = (): string => {
|
||||||
return date.toLocaleTimeString('en-US', { hour12: false, hour: 'numeric', minute: 'numeric' })
|
return date.toLocaleTimeString('en-US', { hour: 'numeric', minute: 'numeric' })
|
||||||
}
|
}
|
||||||
|
|
||||||
refreshDate()
|
refreshDate()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue