(subBlock: SubBlockConfig)
| 425 | * Check if a subblock is gated by a feature flag. |
| 426 | */ |
| 427 | export function isSubBlockFeatureEnabled(subBlock: SubBlockConfig): boolean { |
| 428 | if (!subBlock.showWhenEnvSet) return true |
| 429 | return isTruthy(getEnv(subBlock.showWhenEnvSet)) |
| 430 | } |
| 431 | |
| 432 | /** |
| 433 | * Check if a subblock should be hidden based on environment conditions. |
no test coverage detected