chore: cleanup

This commit is contained in:
Ralph Khreish
2025-08-27 22:57:23 +02:00
parent d57d17e3c1
commit 1733311d44

View File

@@ -80,8 +80,6 @@ export class TaskService {
* This is the main method that retrieves tasks from storage and applies filters * This is the main method that retrieves tasks from storage and applies filters
*/ */
async getTaskList(options: GetTaskListOptions = {}): Promise<TaskListResult> { async getTaskList(options: GetTaskListOptions = {}): Promise<TaskListResult> {
console.log('getTaskList', options);
// Determine which tag to use // Determine which tag to use
const activeTag = this.configManager.getActiveTag(); const activeTag = this.configManager.getActiveTag();
const tag = options.tag || activeTag; const tag = options.tag || activeTag;
@@ -110,8 +108,6 @@ export class TaskService {
})); }));
} }
console.log('tasks', tasks);
return { return {
tasks, tasks,
total: rawTasks.length, total: rawTasks.length,