🐛(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 {
|
return {
|
||||||
success: true,
|
success: true,
|
||||||
responses: [{
|
data: {
|
||||||
recipient: event.organizer?.email || '',
|
success: true,
|
||||||
status: 'delivered' as const,
|
responses: [{
|
||||||
}],
|
recipient: event.organizer?.email || '',
|
||||||
|
status: 'delivered' as const,
|
||||||
|
}],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user