Skip to content

Commit

Permalink
Change Default value to OFF instead of foo for string features (#2436)
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronmoten committed May 3, 2024
1 parent a53a1f6 commit a44c797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/front-end/services/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export function getDefaultValue(valueType: FeatureValueType): string {
return "1";
}
if (valueType === "string") {
return "foo";
return "OFF"; // Default Values should be the OFF State to match most platforms.
}
if (valueType === "json") {
return "{}";
Expand Down

0 comments on commit a44c797

Please sign in to comment.