rank-tracking: raise per-project config limit from 20 to 100 (#318)

The cap was only a soft guard against runaway scheduled DataForSEO
workload, not a hard product constraint. Bump it to 100 so projects
tracking many domain/location combos aren't blocked.

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Ben Senescu 2026-06-30 15:36:34 -04:00 committed by Ben Senescu
parent fa0651b96d
commit e5e5029e6b

View File

@ -37,7 +37,7 @@ export const SECONDS_PER_BATCH = 6;
export const MAX_KEYWORDS_PER_CONFIG = 1000; export const MAX_KEYWORDS_PER_CONFIG = 1000;
/** Maximum configs (domain+location combos) per project */ /** Maximum configs (domain+location combos) per project */
export const MAX_CONFIGS_PER_PROJECT = 20; export const MAX_CONFIGS_PER_PROJECT = 100;
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Cost estimation // Cost estimation