Feat/SW-1652 confirmation page * feat(SW-1652): handle linkedReservations fetching * fix: add missing translations * feat: add linkedReservation retry functionality * chore: align naming Approved-by: Simon.Emanuelsson
24 lines
671 B
TypeScript
24 lines
671 B
TypeScript
"use client"
|
|
|
|
import { useIntl } from "react-intl"
|
|
|
|
import Button from "@/components/TempDesignSystem/Button"
|
|
import Body from "@/components/TempDesignSystem/Text/Body"
|
|
|
|
import styles from "./retry.module.css"
|
|
|
|
import type { RetryProps } from "@/types/components/hotelReservation/bookingConfirmation/rooms/linkedReservation"
|
|
|
|
export default function Retry({ handleRefetch }: RetryProps) {
|
|
const intl = useIntl()
|
|
return (
|
|
<div className={styles.retry}>
|
|
<Body>{intl.formatMessage({ id: "Something went wrong!" })}</Body>
|
|
|
|
<Button size={"small"} onPress={handleRefetch}>
|
|
{intl.formatMessage({ id: "Try again" })}
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|