Fix: startActivity parameter type mismatch in useSessionHandlers

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-25 14:29:40 +02:00
parent 4e27c9b35a
commit c92f2dc7a7

View File

@@ -13,7 +13,7 @@ export async function startSessionFlow(params: {
selectedMobileFile: { dataUrl: string; type: string; name: string } | null selectedMobileFile: { dataUrl: string; type: string; name: string } | null
storedDocuments: StoredDocument[] storedDocuments: StoredDocument[]
ocrPrompts: OcrPrompts ocrPrompts: OcrPrompts
startActivity: (type: string, meta: any) => void startActivity: (type: string, meta?: any) => void
setSession: (s: Session | null | ((prev: Session | null) => Session | null)) => void setSession: (s: Session | null | ((prev: Session | null) => Session | null)) => void
setWorksheetTitle: (t: string) => void setWorksheetTitle: (t: string) => void
setExtractionStatus: (s: string) => void setExtractionStatus: (s: string) => void