feat(SW-914): remove placholder values

This commit is contained in:
Fredrik Thorsson
2024-11-20 13:58:48 +01:00
parent ae74f88e04
commit 69e285d449
2 changed files with 1 additions and 2 deletions

View File

@@ -8,7 +8,6 @@ import type { AmenityProps } from "@/types/components/hotelPage/sidepeek/amenity
export default function Amenity({ name, buttonUrl }: AmenityProps) {
return (
<div className={styles.wrapper}>
<div>{name}</div>
{buttonUrl && (
<Button theme="base" intent="primary" fullWidth asChild>
<Link href={buttonUrl} color="white">

View File

@@ -31,7 +31,7 @@ export default async function AmenitiesSidepeek({
title={amenity.name}
icon={IconName[name]}
>
<Amenity name={amenity.name} buttonUrl="#" />
<Amenity name={amenity.name} />
</AccordionItem>
)
})}