Skip to content

Commit

Permalink
refactor(feature-flags): flip enable meows feature flag (#2359)
Browse files Browse the repository at this point in the history
  • Loading branch information
domw30 authored Oct 14, 2024
1 parent b61c88d commit d807da9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/feature-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class FeatureFlags {
}

get enableMeows() {
return this._getBoolean('enableMeows', false);
return this._getBoolean('enableMeows', true);
}

set enableMeows(value: boolean) {
Expand Down

0 comments on commit d807da9

Please sign in to comment.