Skip to content

Commit 86bdd98

Browse files
committed
feat: reduce cooldown period from 10 to 5 minutes
1 parent 35f204e commit 86bdd98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/utils/cooldownUtils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
22
* @fileoverview Cooldown utility functions
3-
* Manages 10-minute cooldown between problem completions
3+
* Manages 5-minute cooldown between problem completions
44
*/
55

6-
const COOLDOWN_MINUTES = 10;
6+
const COOLDOWN_MINUTES = 5;
77

88
/**
99
* Check if user can complete a problem (cooldown expired)

0 commit comments

Comments
 (0)