🐛(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

@@ -929,11 +929,14 @@ export class CalDavService {
} }
return { return {
success: true,
data: {
success: true, success: true,
responses: [{ responses: [{
recipient: event.organizer?.email || '', recipient: event.organizer?.email || '',
status: 'delivered' as const, status: 'delivered' as const,
}], }],
},
} }
} }