Merged in chore/apply-lint-fix (pull request #3312)

chore: Apply lint:fix on booking-flow

* run lint:fix


Approved-by: Bianca Widstam
This commit is contained in:
Anton Gunnarsson
2025-12-08 13:50:41 +00:00
parent ca6cc5ab6c
commit 914da2b094
24 changed files with 68 additions and 68 deletions

View File

@@ -18,7 +18,7 @@ export function HotelDetails({
return (
<div className={styles.container}>
<div className={styles.details}>
<Typography variant={"Title/Subtitle/md"}>
<Typography variant="Title/Subtitle/md">
<h3>
{intl.formatMessage({
id: "bookingConfirmation.hotelDetails",
@@ -26,7 +26,7 @@ export function HotelDetails({
})}
</h3>
</Typography>
<Typography variant={"Body/Paragraph/mdRegular"}>
<Typography variant="Body/Paragraph/mdRegular">
<div className={styles.hotel}>
<p>{hotel.name}</p>
<p>
@@ -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}
</Link>
@@ -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}
</Link>