File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,6 @@ export interface GetConfigResponse {
54
54
FEATURE_FLAGS : {
55
55
ENABLE_BILLING : boolean ;
56
56
HIDE_LLM_SETTINGS : boolean ;
57
- HIDE_MICROAGENT_MANAGEMENT ?: boolean ;
58
57
ENABLE_JIRA : boolean ;
59
58
ENABLE_JIRA_DC : boolean ;
60
59
ENABLE_LINEAR : boolean ;
Original file line number Diff line number Diff line change @@ -37,9 +37,6 @@ export function Sidebar() {
37
37
const shouldHideLlmSettings =
38
38
config ?. FEATURE_FLAGS . HIDE_LLM_SETTINGS && config ?. APP_MODE === "saas" ;
39
39
40
- const shouldHideMicroagentManagement =
41
- config ?. FEATURE_FLAGS . HIDE_MICROAGENT_MANAGEMENT ;
42
-
43
40
React . useEffect ( ( ) => {
44
41
if ( shouldHideLlmSettings ) return ;
45
42
@@ -83,11 +80,9 @@ export function Sidebar() {
83
80
}
84
81
disabled = { settings ?. EMAIL_VERIFIED === false }
85
82
/>
86
- { ! shouldHideMicroagentManagement && (
87
- < MicroagentManagementButton
88
- disabled = { settings ?. EMAIL_VERIFIED === false }
89
- />
90
- ) }
83
+ < MicroagentManagementButton
84
+ disabled = { settings ?. EMAIL_VERIFIED === false }
85
+ />
91
86
</ div >
92
87
93
88
< div className = "flex flex-row md:flex-col md:items-center gap-[26px] md:mb-4" >
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ class ServerConfig(ServerConfigInterface):
13
13
enable_billing = os .environ .get ('ENABLE_BILLING' , 'false' ) == 'true'
14
14
hide_llm_settings = os .environ .get ('HIDE_LLM_SETTINGS' , 'false' ) == 'true'
15
15
# This config is used to hide the microagent management page from the users for now. We will remove this once we release the new microagent management page.
16
- hide_microagent_management = True
17
16
settings_store_class : str = (
18
17
'openhands.storage.settings.file_settings_store.FileSettingsStore'
19
18
)
@@ -44,7 +43,6 @@ def get_config(self):
44
43
'FEATURE_FLAGS' : {
45
44
'ENABLE_BILLING' : self .enable_billing ,
46
45
'HIDE_LLM_SETTINGS' : self .hide_llm_settings ,
47
- 'HIDE_MICROAGENT_MANAGEMENT' : self .hide_microagent_management ,
48
46
},
49
47
}
50
48
You can’t perform that action at this time.
0 commit comments