Skip to content

Commit

Permalink
chore: enableComments flag default to true (#2517)
Browse files Browse the repository at this point in the history
  • Loading branch information
colbr authored Dec 15, 2024
1 parent cd606b6 commit cead342
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 @@ -163,7 +163,7 @@ export class FeatureFlags {
}

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

set enableComments(value: boolean) {
Expand Down

0 comments on commit cead342

Please sign in to comment.