Skip to content

Commit

Permalink
feat: Update firstIntervalDuration to 20 minutes in background.js
Browse files Browse the repository at this point in the history
  • Loading branch information
LyubomirT committed May 12, 2024
1 parent 9d2e535 commit 271b796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ var timerInterval;
var startTime;
var elapsedTime = 0;
var isTimerRunning = false;
var firstIntervalDuration = 20 * 1000; // 20 seconds
var firstIntervalDuration = 20 * 60 * 1000; // 20 minutes in milliseconds
var secondIntervalDuration = 10 * 1000; // 10 seconds

// Function to start the timer
Expand Down

0 comments on commit 271b796

Please sign in to comment.