Skip to content

Commit ac2e546

Browse files
Fix debug timings
1 parent f0397a4 commit ac2e546

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/renderer/components/break/break-notification.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export function BreakNotification({
3838
const now = moment();
3939
const elapsedMs = now.diff(startTime, "milliseconds");
4040

41-
if (elapsedMs < 2000) {
41+
if (elapsedMs < 60000) {
4242
setPhase("grace");
4343
} else if (elapsedMs < 120000) {
4444
setPhase("countdown");

0 commit comments

Comments
 (0)