🐛(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:
Nathan Panchout
2026-01-25 20:42:06 +01:00
parent 8a253950cc
commit aa7939b527

View File

@@ -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,
}],
},
}
}