Skip to content

Commit

Permalink
Merge pull request #6 from LyubomirT/main
Browse files Browse the repository at this point in the history
Fix an issue I accidentally created
  • Loading branch information
Nandika-A authored May 12, 2024
2 parents c2b52a2 + 1520b49 commit e804090
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 e804090

Please sign in to comment.