crates/feature_flags/src/feature_flags.rs 🔗
@@ -108,6 +108,10 @@ pub struct ClaudeCodeFeatureFlag;
impl FeatureFlag for ClaudeCodeFeatureFlag {
const NAME: &'static str = "claude-code";
+
+ fn enabled_for_all() -> bool {
+ true
+ }
}
pub trait FeatureFlagViewExt<V: 'static> {