frontend: remove ADP related flags already enabled#2238
frontend: remove ADP related flags already enabled#2238malinskibeniamin merged 6 commits intomasterfrom
Conversation
2b7120b to
63ebedf
Compare
Add GetQuotas to the early-return false switch in isSupported() so it doesn't flash in the sidebar during MFE init when endpointCompatibility is still null. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
a96e21a to
8baf94b
Compare
|
@claude review |
|
Claude finished @malinskibeniamin's task in 2m 47s —— View job Code Review
Overall this is a clean flag-removal PR. The bulk of the code change is the API version consolidation in A few things to flag: Bug: Wrong type parameter in
|
|
|
||
| export function isAdpEnabled() { | ||
| return config.isAdpEnabled; | ||
| return config.isAdpEnabled && !isServerless(); |
There was a problem hiding this comment.
Serverless is completely out of the picture when it comes to ADP for now.
| await queryClient.ensureQueryData( | ||
| createQueryOptions(listMCPServers, create(ListMCPServersRequestSchema, { pageSize: 50 }), { | ||
| transport: dataplaneTransport, | ||
| }) |
There was a problem hiding this comment.
MCP is v1 so we should not use v1alpha3 anymore.
sago2k8
left a comment
There was a problem hiding this comment.
Please review Claude's comments, otherwise lgtm
|
Already applied claude review |
Also removes shadow link feature flag since it was already enabled across all environments for 2+ months.
Fix for UX-901