From 5b70b7703efefe5b77904b226c91fd6cb8baffa5 Mon Sep 17 00:00:00 2001 From: Badri Narayanan S Date: Tue, 6 Jan 2026 22:22:32 +0530 Subject: [PATCH] Changed default cooldown time to 10 seconds --- src/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/constants.js b/src/constants.js index 06f9af7..b2f52d7 100644 --- a/src/constants.js +++ b/src/constants.js @@ -74,7 +74,7 @@ export const ACCOUNT_CONFIG_PATH = join( // Uses platform-specific path detection export const ANTIGRAVITY_DB_PATH = getAntigravityDbPath(); -export const DEFAULT_COOLDOWN_MS = 60 * 1000; // 1 minute default cooldown +export const DEFAULT_COOLDOWN_MS = 10 * 1000; // 10 second default cooldown export const MAX_RETRIES = 5; // Max retry attempts across accounts export const MAX_ACCOUNTS = 10; // Maximum number of accounts allowed