fix: load messages on mount to prevent empty chat and sync valid task persistence types

This commit is contained in:
Gemini AI
2025-12-27 13:02:35 +04:00
Unverified
parent 326825a5fb
commit 802e3ba759
2 changed files with 6 additions and 1 deletions

View File

@@ -16,6 +16,8 @@ export interface Task {
status: TaskStatus
timestamp: number
messageIds?: string[] // IDs of messages associated with this task
taskSessionId?: string
archived?: boolean
}
export interface SessionTasks {