fix(sessions): allow optional patch field in diff for migrated sessions (#26574)

This commit is contained in:
OpeOginni 2026-05-09 22:23:28 +02:00 committed by GitHub
commit d62442bb5d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 4 deletions

View file

@ -120,7 +120,7 @@ export type PermissionRequest = {
export type SnapshotFileDiff = {
file: string
patch: string
patch?: string
additions: number
deletions: number
status?: "added" | "deleted" | "modified"