partial instead of any

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
dal 2025-07-04 08:13:59 -07:00 committed by GitHub
parent 6fb546a4ad
commit 79e7cb4b95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ export async function updateChat(
}
// Build update object with only provided fields
const updateData: any = {
const updateData: Partial<UpdateableChatFields> & { updatedAt: string } = {
updatedAt: new Date().toISOString(),
};