We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa3ec9 commit c3abaccCopy full SHA for c3abacc
flags.ts
@@ -95,7 +95,8 @@ export const googleOauthFlag = flag<boolean>({
95
export const proTeamPlanFlag = flag<boolean>({
96
key: "pro-team-plan",
97
async decide() {
98
- return takeLocalEnv("PRO_TEAM_PLAN_FLAG");
+ return true;
99
+ // return takeLocalEnv("PRO_TEAM_PLAN_FLAG");
100
},
101
description: "Enable Pro Team Plan",
102
defaultValue: false,
@@ -108,7 +109,8 @@ export const proTeamPlanFlag = flag<boolean>({
108
109
export const teamCreationFlag = flag<boolean>({
110
key: "team-creation",
111
- return takeLocalEnv("TEAM_CREATION_FLAG");
112
113
+ // return takeLocalEnv("TEAM_CREATION_FLAG");
114
115
description: "Enable Team Creation",
116
0 commit comments