fix(frontend): update mock feature flags to disable new flow editor and builder view switch

### Summary
This commit modifies the mock feature flags in `use-get-flag.ts` to set both `NEW_FLOW_EDITOR` and `BUILDER_VIEW_SWITCH` to false.

### Key Changes
- Updated `mockFlags` to disable `NEW_FLOW_EDITOR` and `BUILDER_VIEW_SWITCH`.

### Benefits
- Ensures that these features are not enabled by default during development and testing.

### Testing
- Verified that the changes do not affect existing functionality and that the flags are correctly set to false.
This commit is contained in:
abhi1992002
2026-01-19 12:06:11 +05:30
parent bf5af517ec
commit cb964eed25

View File

@@ -41,8 +41,8 @@ const mockFlags = {
[Flag.NEW_AGENT_RUNS]: false,
[Flag.GRAPH_SEARCH]: false,
[Flag.ENABLE_ENHANCED_OUTPUT_HANDLING]: false,
[Flag.NEW_FLOW_EDITOR]: true,
[Flag.BUILDER_VIEW_SWITCH]: true,
[Flag.NEW_FLOW_EDITOR]: false,
[Flag.BUILDER_VIEW_SWITCH]: false,
[Flag.SHARE_EXECUTION_RESULTS]: false,
[Flag.AGENT_FAVORITING]: false,
[Flag.MARKETPLACE_SEARCH_TERMS]: DEFAULT_SEARCH_TERMS,