Merge remote-tracking branch 'origin' into feature/tracking
This commit is contained in:
@@ -207,6 +207,7 @@ export default function PaymentClient({
|
||||
const paymentRedirectUrl = `${env.NEXT_PUBLIC_NODE_ENV === "development" ? `http://localhost:${env.NEXT_PUBLIC_PORT}` : ""}/${lang}/hotelreservation/payment-callback`
|
||||
|
||||
initiateBooking.mutate({
|
||||
language: lang,
|
||||
hotelId: hotel,
|
||||
checkInDate: fromDate,
|
||||
checkOutDate: toDate,
|
||||
|
||||
@@ -227,11 +227,11 @@ export default function SummaryUI({
|
||||
style: "currency",
|
||||
})}
|
||||
</Body>
|
||||
{totalPrice.euro && (
|
||||
{totalPrice.requested && (
|
||||
<Caption color="uiTextMediumContrast">
|
||||
{intl.formatMessage({ id: "Approx." })}{" "}
|
||||
{intl.formatNumber(totalPrice.euro.price, {
|
||||
currency: CurrencyEnum.EUR,
|
||||
{intl.formatNumber(totalPrice.requested.price, {
|
||||
currency: totalPrice.requested.currency,
|
||||
style: "currency",
|
||||
})}
|
||||
</Caption>
|
||||
|
||||
Reference in New Issue
Block a user