Skip to content

Commit 35c0eaa

Browse files
authored
fix(amazonq): do not show workspace context settings (#5534)
As required by product, in the initial launch of workspace context, the settings is not displayed to users. We use AB test behind the scene to opt-in certain users.
1 parent e68bb80 commit 35c0eaa

File tree

1 file changed

+1
-1
lines changed
  • plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/settings

1 file changed

+1
-1
lines changed

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/settings/CodeWhispererConfigurable.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class CodeWhispererConfigurable(private val project: Project) :
151151
enabled(invoke)
152152
bindSelected(codeWhispererSettings::isWorkspaceContextEnabled, codeWhispererSettings::toggleWorkspaceContextEnabled)
153153
}.comment(message("aws.settings.codewhisperer.workspace_context.tooltip"))
154-
}
154+
}.visible(false)
155155
row {
156156
checkBox(message("aws.settings.codewhisperer.project_context")).apply {
157157
connect.subscribe(

0 commit comments

Comments
 (0)