Skip to content

Commit 1ed5d1c

Browse files
authored
fix: address headless loading bug (#8633)
1 parent d75a3f3 commit 1ed5d1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/cli/src/configLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ function determineConfigSource(
133133
} else {
134134
// In headless, user assistant fallback behavior isn't supported
135135
if (isHeadless) {
136-
return { type: "no-config" };
136+
return { type: "default-agent" };
137137
}
138138
// Authenticated: try user assistants first
139139
return { type: "user-assistant", slug: "" }; // Empty slug means "first available"

0 commit comments

Comments
 (0)