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 48a2517 commit ca9224aCopy full SHA for ca9224a
gui/src/components/BackgroundMode/BackgroundModeView.tsx
@@ -55,7 +55,11 @@ export function BackgroundModeView({
55
setCheckingGitHub(true);
56
// Try to list agents - if this fails with GitHub token error,
57
// we know GitHub isn't connected
58
- const result = await ideMessenger.request("listBackgroundAgents", {});
+ const organizationId =
59
+ currentOrg?.id !== "personal" ? currentOrg?.id : undefined;
60
+ const result = await ideMessenger.request("listBackgroundAgents", {
61
+ organizationId,
62
+ });
63
64
// Check for error response
65
if ("error" in result) {
0 commit comments