fix: copy fixes for English labels

This commit is contained in:
Michael Zetterberg
2025-04-28 14:44:59 +02:00
parent 341be43a53
commit efb7219b6d
24 changed files with 36 additions and 46 deletions

View File

@@ -3,7 +3,6 @@ import { useIntl } from "react-intl"
import { myStay } from "@/constants/routes/myStay"
import Link from "@/components/TempDesignSystem/Link"
import Body from "@/components/TempDesignSystem/Text/Body"
import Title from "@/components/TempDesignSystem/Text/Title"
import useLang from "@/hooks/useLang"
@@ -29,19 +28,10 @@ export default function Header({
const intl = useIntl()
const lang = useLang()
const text = intl.formatMessage(
{
defaultMessage:
"Thank you for booking with us! We look forward to welcoming you and hope you have a pleasant stay. If you have any questions or need to make changes to your reservation, please <emailLink>contact us.</emailLink>",
},
{
emailLink: (str) => (
<Link color="burgundy" href="#" textDecoration="underline">
{str}
</Link>
),
}
)
const text = intl.formatMessage({
defaultMessage:
"Thank you for your booking! We look forward to welcoming you and hope you have a pleasant stay.",
})
const event: EventAttributes = {
busyStatus: "FREE",