fix: handle optional messages in ConversationDetailDialog and API response

This commit is contained in:
mlogclub
2026-04-24 21:37:50 +08:00
parent 4f633b3794
commit 92fae381a4
3 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ export type PageResult<T> = {
}
export type CursorResult<T> = {
results: T[]
results?: T[] | null
cursor: string
hasMore: boolean
}