diff --git a/src/components/rental/RentalBookingModal.tsx b/src/components/rental/RentalBookingModal.tsx index eb383b8..a27efd9 100644 --- a/src/components/rental/RentalBookingModal.tsx +++ b/src/components/rental/RentalBookingModal.tsx @@ -277,7 +277,10 @@ export function RentalBookingModal({
{b.guestName}
- {isCheckedIn ? '🏠 Проживает' : '📅 Бронь'}{rLabel ? ` · ${rLabel}` : ''}{b.guestPhone ? ` · ${b.guestPhone}` : ''} + {b.guestPhone + ? b.guestPhone + : isCheckedIn ? '🏠 Проживает' : '📅 Бронь' + }{rLabel ? ` · ${rLabel}` : ''}
{g.lastName} {g.firstName}
- 📋 База гостей{g.phone ? ` · ${g.phone}` : ''} + {g.phone ?? 'нет телефона'}