diff --git a/src/services/ai/runtime/mastraClarificationRuntime.ts b/src/services/ai/runtime/mastraClarificationRuntime.ts
index 9dc8062d7..86e416f10 100644
--- a/src/services/ai/runtime/mastraClarificationRuntime.ts
+++ b/src/services/ai/runtime/mastraClarificationRuntime.ts
@@ -1,7 +1,8 @@
import type { Mastra } from '@mastra/core/mastra'
import type { ChatDecisionRuntimeInput } from './chatDecisionRuntime'
+import type {
+ clarificationResumeSchema} from './mastraChatDecisionWorkflow';
import {
- clarificationResumeSchema,
clarificationSuspendSchema,
clarificationWorkflowOutputSchema,
createClarificationGateWorkflow,
diff --git a/src/services/ai/tools.ts b/src/services/ai/tools.ts
index c5e4c95a8..80fedd677 100644
--- a/src/services/ai/tools.ts
+++ b/src/services/ai/tools.ts
@@ -17,7 +17,8 @@ import { useMoveToCanvasGroup } from '@/composables/canvas/useMoveToCanvasGroup'
import type { Task } from '@/types/tasks'
import type { OpenAITool } from './types'
import { resolveTask } from './entityResolver'
-import { decideAISubtaskCreate, decideAITaskCreate, normalizeAIActionText, type AITaskUpdateFields } from './actionGuardrails'
+import type { decideAISubtaskCreate} from './actionGuardrails';
+import { decideAITaskCreate, normalizeAIActionText, type AITaskUpdateFields } from './actionGuardrails'
import * as aiActionCommands from './actionCommands'
// ============================================================================
diff --git a/src/services/auth/__tests__/authStorage.test.ts b/src/services/auth/__tests__/authStorage.test.ts
index 8cebb2c7d..6cf834637 100644
--- a/src/services/auth/__tests__/authStorage.test.ts
+++ b/src/services/auth/__tests__/authStorage.test.ts
@@ -15,7 +15,7 @@ describe('createLazyAuthStorage — call-time backend resolution (BUG-1874)', ()
if (realWindowProcess === undefined) {
delete (window as any).process
} else {
- ;(window as any).process = realWindowProcess
+ (window as any).process = realWindowProcess
}
Object.defineProperty(navigator, 'userAgent', { value: realUA, configurable: true })
localStorage.clear()
@@ -153,7 +153,7 @@ describe('createLazyAuthStorage — call-time backend resolution (BUG-1874)', ()
})
it('ignores a non-Electron bridge object (isElectron falsy)', async () => {
- ;(window as any).electronAPI = { isElectron: false, storeGet: vi.fn(), storeSet: vi.fn() }
+ (window as any).electronAPI = { isElectron: false, storeGet: vi.fn(), storeSet: vi.fn() }
const storage = createLazyAuthStorage()!
await storage.setItem('flowstate-supabase-auth', 'web-token')
expect(localStorage.getItem('flowstate-supabase-auth')).toBe('web-token')
diff --git a/src/views/LaneView.vue b/src/views/LaneView.vue
index 494e6a86f..3c59f7656 100644
--- a/src/views/LaneView.vue
+++ b/src/views/LaneView.vue
@@ -6,7 +6,9 @@
-
{{ lane?.name || 'Lane' }}
+
+ {{ lane?.name || 'Lane' }}
+
{{ laneTasks.length }} {{ laneTasks.length === 1 ? 'task' : 'tasks' }}
@@ -14,7 +16,9 @@