Skip to content

Commit c3abacc

Browse files
committed
Activate Pro Team Plan and Team creation
1 parent 3fa3ec9 commit c3abacc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: flags.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ export const googleOauthFlag = flag<boolean>({
9595
export const proTeamPlanFlag = flag<boolean>({
9696
key: "pro-team-plan",
9797
async decide() {
98-
return takeLocalEnv("PRO_TEAM_PLAN_FLAG");
98+
return true;
99+
// return takeLocalEnv("PRO_TEAM_PLAN_FLAG");
99100
},
100101
description: "Enable Pro Team Plan",
101102
defaultValue: false,
@@ -108,7 +109,8 @@ export const proTeamPlanFlag = flag<boolean>({
108109
export const teamCreationFlag = flag<boolean>({
109110
key: "team-creation",
110111
async decide() {
111-
return takeLocalEnv("TEAM_CREATION_FLAG");
112+
return true;
113+
// return takeLocalEnv("TEAM_CREATION_FLAG");
112114
},
113115
description: "Enable Team Creation",
114116
defaultValue: false,

0 commit comments

Comments
 (0)