From 1326156e8da2f4e60a65739f9e03d085c54fd7e0 Mon Sep 17 00:00:00 2001 From: Julia Wehden Date: Tue, 24 Mar 2026 13:59:22 +0100 Subject: [PATCH] fix: calendar route photobox.name -> photobox.model --- app/api/calendar/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/calendar/route.ts b/app/api/calendar/route.ts index 511a7d8..e96741e 100644 --- a/app/api/calendar/route.ts +++ b/app/api/calendar/route.ts @@ -45,7 +45,7 @@ export async function GET(req: NextRequest) { customerName: booking.customerName, customerEmail: booking.customerEmail, locationName: booking.location.name, - photoboxName: booking.photobox?.name || 'Keine Box', + photoboxName: booking.photobox?.model || 'Keine Box', tourId: booking.tourId, eventType: booking.eventType, },