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