Skip to content

Commit 80ba262

Browse files
committed
refactor(schematics): leftover default param
1 parent 67a679d commit 80ba262

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/ng-schematics/src/cli-config

packages/ng-schematics/src/cli-config/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ function appInit(tree: Tree) {
127127
setVirtual(tree);
128128
}
129129

130-
function aiConfig({ init, agents, assistants = ["vscode"] }: { init: boolean; agents: AIAgentTarget[]; assistants?: AiCodingAssistant[] }): Rule {
130+
function aiConfig({ init, agents, assistants }: { init: boolean; agents: AIAgentTarget[]; assistants: AiCodingAssistant[] }): Rule {
131131
return (tree: Tree) => {
132132
if (init) {
133133
appInit(tree);

0 commit comments

Comments
 (0)