chore: rc version bump

This commit is contained in:
github-actions[bot]
2025-09-18 12:56:01 +00:00
parent 170d6f2f65
commit cb2c266b2d
11 changed files with 51 additions and 9 deletions

View File

@@ -147,7 +147,6 @@ export class SupabaseTaskRepository {
taskId: string,
updates: Partial<Task>
): Promise<Task> {
// Get the current context to determine briefId
const authManager = AuthManager.getInstance();
const context = authManager.getContext();

View File

@@ -374,7 +374,6 @@ export class TaskService {
newStatus: TaskStatus;
taskId: string;
}> {
// Ensure we have storage
if (!this.storage) {
throw new TaskMasterError(

View File

@@ -469,7 +469,6 @@ export class ApiStorage implements IStorage {
updates: Partial<Task>,
tag?: string
): Promise<void> {
await this.ensureInitialized();
try {

View File

@@ -107,7 +107,7 @@ export class FileStorage implements IStorage {
*/
async loadTask(taskId: string, tag?: string): Promise<Task | null> {
const tasks = await this.loadTasks(tag);
return tasks.find(task => task.id === taskId) || null;
return tasks.find((task) => task.id === taskId) || null;
}
/**