In hooks/ponytail-config.js:
const VALID_MODES = ['off', 'lite', 'full', 'ultra', 'review'];
const RUNTIME_MODES = ['off', 'lite', 'full', 'ultra'];
Setting PONYTAIL_DEFAULT_MODE=review passes validation, but normalizeMode('review') returns null (since 'review' is not in RUNTIME_MODES), causing fallback to 'full'. A user who configures 'review' as default would never know they're actually running in 'full' mode.
In
hooks/ponytail-config.js:Setting
PONYTAIL_DEFAULT_MODE=reviewpasses validation, butnormalizeMode('review')returns null (since 'review' is not in RUNTIME_MODES), causing fallback to 'full'. A user who configures 'review' as default would never know they're actually running in 'full' mode.