We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0397a4 commit ac2e546Copy full SHA for ac2e546
app/renderer/components/break/break-notification.tsx
@@ -38,7 +38,7 @@ export function BreakNotification({
38
const now = moment();
39
const elapsedMs = now.diff(startTime, "milliseconds");
40
41
- if (elapsedMs < 2000) {
+ if (elapsedMs < 60000) {
42
setPhase("grace");
43
} else if (elapsedMs < 120000) {
44
setPhase("countdown");
0 commit comments