Skip to content

Commit 985ecff

Browse files
authored
chore: Removed unneeded typing (#286)
1 parent e8c2c59 commit 985ecff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ClockHands.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { rotate, seconds } from '@/common';
55
import { getTestId } from '@/utilities';
66

77
const hours = seconds / 5;
8-
const getSecondsSinceMidnight = (): number =>
8+
const getSecondsSinceMidnight = () =>
99
(Date.now() - new Date().setHours(0, 0, 0, 0)) / 1000;
1010

1111
const [time, setTime] = createSignal(getSecondsSinceMidnight());

0 commit comments

Comments
 (0)