We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b011b63 commit 2dfecc1Copy full SHA for 2dfecc1
src/core/webview/ClineProvider.ts
@@ -1820,7 +1820,9 @@ export class ClineProvider
1820
let cloudOrganizations: CloudOrganizationMembership[] = []
1821
1822
try {
1823
- cloudOrganizations = await CloudService.instance.getOrganizationMemberships()
+ if (!CloudService.instance.isCloudAgent) {
1824
+ cloudOrganizations = await CloudService.instance.getOrganizationMemberships()
1825
+ }
1826
} catch (error) {
1827
console.error(
1828
`[getStateToPostToWebview] failed to get cloud organizations: ${error instanceof Error ? error.message : String(error)}`,
0 commit comments