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 dd68971 commit a6b69e6Copy full SHA for a6b69e6
src/prompt-manage/team-prompts/TeamPromptsBuilder.ts
@@ -91,10 +91,11 @@ export class TeamPromptsBuilder {
91
}
92
93
private buildPrompts(promptsDir: string) {
94
- const files = fs.readdirSync(promptsDir);
95
const prompts: TeamPromptAction[] = [];
96
97
try {
+ const files = fs.readdirSync(promptsDir);
98
+
99
const vmFiles = files.filter(file => file.endsWith('.vm'));
100
101
vmFiles.forEach(file => {
0 commit comments