()
| 1281 | * have not disabled it. Synchronous. |
| 1282 | */ |
| 1283 | export function isAutoModeGateEnabled(): boolean { |
| 1284 | if (autoModeStateModule?.isAutoModeCircuitBroken() ?? false) return false |
| 1285 | if (isAutoModeDisabledBySettings()) return false |
| 1286 | if (!modelSupportsAutoMode(getMainLoopModel())) return false |
| 1287 | return true |
| 1288 | } |
| 1289 | |
| 1290 | /** |
| 1291 | * Returns the reason auto mode is currently unavailable, or null if available. |
no test coverage detected