Skip to content

Commit 230932c

Browse files
committed
put behind test FG
1 parent 3da9bbd commit 230932c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/jira/createIssue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export async function createIssue(data: Uri | TodoIssueData | undefined, source?
7676
});
7777
return;
7878
}
79-
if (Container.featureFlagClient.checkGate(Features.CreateWorkItemWebviewV2) || true) {
79+
if (Container.featureFlagClient.checkGate(Features.CreateWorkItemWebviewV2)) {
8080
Container.createWorkItemWebviewProvider.createOrShow();
8181
} else {
8282
Container.createIssueWebview.createOrShow();

src/util/features.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export enum Features {
66
UseNewAuthFlow = 'atlascode-use-new-auth-flow',
77
EnableAiSuggestions = 'atlascode-enable-ai-suggestions-new',
88
AtlaskitEditor = 'atlascode-use-new-atlaskit-editor',
9-
CreateWorkItemWebviewV2 = 'atlascode-create-work-item-webview-v2',
9+
CreateWorkItemWebviewV2 = 'atlascode-create-work-item-webview-test',
1010
}
1111

1212
export const enum Experiments {

0 commit comments

Comments
 (0)