We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346b756 commit 77464b4Copy full SHA for 77464b4
1 file changed
src/core/taskmaster/exec.ts
@@ -53,7 +53,6 @@ const tmai = new TaskMaster({
53
tasksFilePath: TASKS_PATH,
54
isTestMode: false,
55
});
56
-const tasks = await tmai.getTasksContentAsync();
57
58
// TODO: done
59
export async function tmaiInitAsync() {
@@ -114,6 +113,7 @@ export async function tmaiGenAsync() {
114
113
115
// TODO: in-progress
116
export async function tmaiManageAsync() {
+ const tasks = await tmai.getTasksContentAsync();
117
const { tmaiManageMenu } = await inquirer.prompt(tmaiManageMenu_prompt);
118
119
switch (tmaiManageMenu) {
0 commit comments