Skip to content

Commit b7157ea

Browse files
committed
fix comment
1 parent 8c8eb60 commit b7157ea

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

web_src/js/features/stopwatch.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,7 @@ function updateStopwatchData(data) {
144144
return Boolean(data.length);
145145
}
146146

147-
// TODO: This flickers on page load, we could avoid this by making a custom
148-
// element to render time periods. Feeding a datetime in backend does not work
149-
// when time zone between server and client differs.
147+
// TODO: This flickers on page load, we could avoid this by making a custom element to render time periods.
150148
function updateStopwatchTime(seconds: number) {
151149
const hours = seconds / 3600 || 0;
152150
const minutes = seconds / 60 || 0;

0 commit comments

Comments
 (0)