diff --git a/packages/booking-flow/lib/components/BookingConfirmation/Header/index.tsx b/packages/booking-flow/lib/components/BookingConfirmation/Header/index.tsx index 83412c094..e6c110e69 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/Header/index.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/Header/index.tsx @@ -57,7 +57,7 @@ export function Header({ return (
- +

{intl.formatMessage({ id: "bookingConfirmation.title", @@ -65,7 +65,7 @@ export function Header({ })}

- +

{hotel.name}

diff --git a/packages/booking-flow/lib/components/BookingConfirmation/HotelDetails/index.tsx b/packages/booking-flow/lib/components/BookingConfirmation/HotelDetails/index.tsx index 58a3f1d55..e2ba7c7f8 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/HotelDetails/index.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/HotelDetails/index.tsx @@ -18,7 +18,7 @@ export function HotelDetails({ return (
- +

{intl.formatMessage({ id: "bookingConfirmation.hotelDetails", @@ -26,7 +26,7 @@ export function HotelDetails({ })}

- +

{hotel.name}

@@ -58,7 +58,7 @@ export function HotelDetails({ className={styles.link} color="Text/Interactive/Secondary" href={`mailto:${hotel.contactInformation.email}`} - textDecoration={"underline"} + textDecoration="underline" > {hotel.contactInformation.email} @@ -66,7 +66,7 @@ export function HotelDetails({ className={styles.link} color="Text/Interactive/Secondary" href={hotel.contactInformation.websiteUrl} - textDecoration={"underline"} + textDecoration="underline" > {hotel.contactInformation.websiteUrl} diff --git a/packages/booking-flow/lib/components/BookingConfirmation/PaymentDetails/index.tsx b/packages/booking-flow/lib/components/BookingConfirmation/PaymentDetails/index.tsx index 2e7b9eb57..038ce2802 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/PaymentDetails/index.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/PaymentDetails/index.tsx @@ -22,7 +22,7 @@ export function PaymentDetails() { const hasAllRoomsLoaded = rooms.every((room) => room) return (

- +

{intl.formatMessage({ id: "bookingConfirmation.paymentDetails", @@ -32,7 +32,7 @@ export function PaymentDetails() {
{hasAllRoomsLoaded ? ( - +

{intl.formatMessage( { @@ -46,7 +46,7 @@ export function PaymentDetails() {

) : ( - + )}

diff --git a/packages/booking-flow/lib/components/BookingConfirmation/Promos/Promo/index.tsx b/packages/booking-flow/lib/components/BookingConfirmation/Promos/Promo/index.tsx index f91131c42..21f72eff3 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/Promos/Promo/index.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/Promos/Promo/index.tsx @@ -20,13 +20,13 @@ export function Promo({ buttonText, href, text, title }: PromoProps) { return (
- +

{title}

- +

{text}

-
diff --git a/packages/booking-flow/lib/components/BookingConfirmation/Receipt/Room/RoomSkeletonLoader.tsx b/packages/booking-flow/lib/components/BookingConfirmation/Receipt/Room/RoomSkeletonLoader.tsx index 3d6b8b523..56c03ef19 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/Receipt/Room/RoomSkeletonLoader.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/Receipt/Room/RoomSkeletonLoader.tsx @@ -6,9 +6,9 @@ export default function RoomSkeletonLoader() { return (
- - - + + + diff --git a/packages/booking-flow/lib/components/BookingConfirmation/Receipt/TotalPrice/index.tsx b/packages/booking-flow/lib/components/BookingConfirmation/Receipt/TotalPrice/index.tsx index 0b3fd71ec..c42bcd238 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/Receipt/TotalPrice/index.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/Receipt/TotalPrice/index.tsx @@ -62,7 +62,7 @@ export default function TotalPrice() { ) : ( - + )}
@@ -71,7 +71,7 @@ export default function TotalPrice() { {hasAllRoomsLoaded ? ( ) : ( - + )}
diff --git a/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/LinkedReservationCardSkeleton.tsx b/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/LinkedReservationCardSkeleton.tsx index fa6624493..444e94538 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/LinkedReservationCardSkeleton.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/LinkedReservationCardSkeleton.tsx @@ -7,24 +7,24 @@ export function LinkedReservationCardSkeleton() {
- +
- - + +
- - - - + + + +
- - - - + + + +
diff --git a/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/Retry.tsx b/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/Retry.tsx index 4e55cf84a..9a3df7bf3 100644 --- a/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/Retry.tsx +++ b/packages/booking-flow/lib/components/BookingConfirmation/Rooms/LinkedReservation/Retry.tsx @@ -15,7 +15,7 @@ export default function Retry({ handleRefetch }: RetryProps) { const intl = useIntl() return (
- +

{intl.formatMessage({ id: "errorMessage.somethingWentWrong", @@ -24,7 +24,7 @@ export default function Retry({ handleRefetch }: RetryProps) {

-
) diff --git a/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx b/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx index f29bb6a91..ce2d5e4d6 100644 --- a/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx +++ b/packages/booking-flow/lib/components/BookingWidget/BookingWidgetForm/FormContent/index.tsx @@ -141,8 +141,8 @@ export default function FormContent({
) diff --git a/packages/booking-flow/lib/components/BookingWidget/MobileToggleButton/index.tsx b/packages/booking-flow/lib/components/BookingWidget/MobileToggleButton/index.tsx index f83f96513..03c3a3aa7 100644 --- a/packages/booking-flow/lib/components/BookingWidget/MobileToggleButton/index.tsx +++ b/packages/booking-flow/lib/components/BookingWidget/MobileToggleButton/index.tsx @@ -106,7 +106,7 @@ export default function MobileToggleButton({ {!locationAndDateIsSet && ( <> - + {intl.formatMessage({ id: "bookingWidget.label.whereTo", @@ -114,7 +114,7 @@ export default function MobileToggleButton({ })} - + {searchTerm ? searchTerm @@ -128,10 +128,10 @@ export default function MobileToggleButton({ {/* Button can't contain HR elements */} - + {totalNightsMsg} - + {intl.formatMessage( { @@ -155,10 +155,10 @@ export default function MobileToggleButton({ {locationAndDateIsSet && ( <> - + {selectedSearchTerm} - + {intl.formatMessage( { @@ -191,7 +191,7 @@ export function MobileToggleButtonSkeleton() { return (
- + {intl.formatMessage({ id: "bookingWidget.label.whereTo", @@ -199,7 +199,7 @@ export function MobileToggleButtonSkeleton() { })} - + @@ -215,7 +215,7 @@ export function MobileToggleButtonSkeleton() { )} - + diff --git a/packages/booking-flow/lib/components/EnterDetails/Details/MemberPriceModal/index.tsx b/packages/booking-flow/lib/components/EnterDetails/Details/MemberPriceModal/index.tsx index c86d6d614..1618b76d7 100644 --- a/packages/booking-flow/lib/components/EnterDetails/Details/MemberPriceModal/index.tsx +++ b/packages/booking-flow/lib/components/EnterDetails/Details/MemberPriceModal/index.tsx @@ -56,7 +56,7 @@ export default function MemberPriceModal() {
- +

{intl.formatMessage({ id: "enterDetails.memberPriceModal.title", diff --git a/packages/booking-flow/lib/components/EnterDetails/Header/index.tsx b/packages/booking-flow/lib/components/EnterDetails/Header/index.tsx index 8eece9e7e..c4d83e20e 100644 --- a/packages/booking-flow/lib/components/EnterDetails/Header/index.tsx +++ b/packages/booking-flow/lib/components/EnterDetails/Header/index.tsx @@ -66,7 +66,7 @@ export default function HotelHeader({ id: "destination.seeHotelDetails", defaultMessage: "See hotel details", })} - buttonVariant={"secondary"} + buttonVariant="secondary" />

diff --git a/packages/booking-flow/lib/components/EnterDetails/Summary/UI/index.tsx b/packages/booking-flow/lib/components/EnterDetails/Summary/UI/index.tsx index 063563cc8..2ad734138 100644 --- a/packages/booking-flow/lib/components/EnterDetails/Summary/UI/index.tsx +++ b/packages/booking-flow/lib/components/EnterDetails/Summary/UI/index.tsx @@ -248,7 +248,7 @@ export default function SummaryUI({ {showSignupPromo && roomOneMemberPrice && !isUserLoggedIn ? ( ) : null} diff --git a/packages/booking-flow/lib/components/RoomCardSkeleton/RoomCardSkeleton.tsx b/packages/booking-flow/lib/components/RoomCardSkeleton/RoomCardSkeleton.tsx index ae73e9607..3a02b179e 100644 --- a/packages/booking-flow/lib/components/RoomCardSkeleton/RoomCardSkeleton.tsx +++ b/packages/booking-flow/lib/components/RoomCardSkeleton/RoomCardSkeleton.tsx @@ -7,13 +7,13 @@ export function RoomCardSkeleton() {
{/* image container */}
- +
{/* price variants */} {Array.from({ length: 3 }).map((_, index) => ( - + ))}
diff --git a/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapSkeleton.tsx b/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapSkeleton.tsx index 53ea68b07..0f0b38ae1 100644 --- a/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapSkeleton.tsx +++ b/packages/booking-flow/lib/components/SelectHotel/SelectHotelMap/SelectHotelMapSkeleton.tsx @@ -21,7 +21,7 @@ export function SelectHotelMapSkeleton({ count = 2 }: Props) {
- +
) diff --git a/packages/booking-flow/lib/components/SelectHotel/SelectHotelSkeleton.tsx b/packages/booking-flow/lib/components/SelectHotel/SelectHotelSkeleton.tsx index e246dd213..fafb68c97 100644 --- a/packages/booking-flow/lib/components/SelectHotel/SelectHotelSkeleton.tsx +++ b/packages/booking-flow/lib/components/SelectHotel/SelectHotelSkeleton.tsx @@ -14,10 +14,10 @@ export function SelectHotelSkeleton({ count = 4 }: Props) {
- +
- +
@@ -25,10 +25,10 @@ export function SelectHotelSkeleton({ count = 4 }: Props) {
- +
- +
diff --git a/packages/booking-flow/lib/components/SelectRate/RoomsContainer/RateSummary/MobileSummary/Content/index.tsx b/packages/booking-flow/lib/components/SelectRate/RoomsContainer/RateSummary/MobileSummary/Content/index.tsx index 0b61a7392..be6083ca2 100644 --- a/packages/booking-flow/lib/components/SelectRate/RoomsContainer/RateSummary/MobileSummary/Content/index.tsx +++ b/packages/booking-flow/lib/components/SelectRate/RoomsContainer/RateSummary/MobileSummary/Content/index.tsx @@ -348,7 +348,7 @@ export default function SummaryContent({ amount: memberPrice.localPrice.pricePerStay, currency: memberPrice.localPrice.currency, }} - badgeContent={"✌️"} + badgeContent="✌️" /> ) : null} diff --git a/packages/booking-flow/lib/components/SelectRate/RoomsContainer/Rooms/RoomsList/RoomListItem/Rates/BreakfastMessage/index.tsx b/packages/booking-flow/lib/components/SelectRate/RoomsContainer/Rooms/RoomsList/RoomListItem/Rates/BreakfastMessage/index.tsx index a335d99df..c4de121b4 100644 --- a/packages/booking-flow/lib/components/SelectRate/RoomsContainer/Rooms/RoomsList/RoomListItem/Rates/BreakfastMessage/index.tsx +++ b/packages/booking-flow/lib/components/SelectRate/RoomsContainer/Rooms/RoomsList/RoomListItem/Rates/BreakfastMessage/index.tsx @@ -71,7 +71,7 @@ export function BreakfastMessage({

{breakfastMessage}