feat(SW-281): remove li

This commit is contained in:
Fredrik Thorsson
2024-10-24 15:57:27 +02:00
parent b841604e5e
commit a4e597dc14

View File

@@ -10,7 +10,7 @@ import { getIntl } from "@/i18n"
import styles from "./hotelListing.module.css" import styles from "./hotelListing.module.css"
import { HotelListingProps } from "@/types/components/contentPage/hotelListing" import type { HotelListingProps } from "@/types/components/contentPage/hotelListing"
export default async function HotelListing({ export default async function HotelListing({
image, image,
@@ -22,7 +22,6 @@ export default async function HotelListing({
const intl = await getIntl() const intl = await getIntl()
return ( return (
<li>
<article className={styles.container}> <article className={styles.container}>
<section> <section>
<Image <Image
@@ -61,6 +60,5 @@ export default async function HotelListing({
</Button> </Button>
</section> </section>
</article> </article>
</li>
) )
} }