🐛(front) fix CalDavService return type
Fix return type for respondToInvitation method to properly wrap response in data property as expected by CalDavResponse. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -930,10 +930,13 @@ export class CalDavService {
|
||||
|
||||
return {
|
||||
success: true,
|
||||
responses: [{
|
||||
recipient: event.organizer?.email || '',
|
||||
status: 'delivered' as const,
|
||||
}],
|
||||
data: {
|
||||
success: true,
|
||||
responses: [{
|
||||
recipient: event.organizer?.email || '',
|
||||
status: 'delivered' as const,
|
||||
}],
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user