diff --git a/components/HotelReservation/SelectRate/RoomFilter/index.tsx b/components/HotelReservation/SelectRate/RoomFilter/index.tsx
index fb41f3cc7..a07e8353f 100644
--- a/components/HotelReservation/SelectRate/RoomFilter/index.tsx
+++ b/components/HotelReservation/SelectRate/RoomFilter/index.tsx
@@ -98,26 +98,38 @@ export default function RoomFilter({
diff --git a/components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx b/components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx
index 2d11e1173..12992bbc4 100644
--- a/components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx
+++ b/components/TempDesignSystem/Form/FilterChip/_Chip/index.tsx
@@ -3,7 +3,6 @@ import { useFormContext } from "react-hook-form"
import { HeartIcon, InfoCircleIcon } from "@/components/Icons"
import Caption from "@/components/TempDesignSystem/Text/Caption"
-import { Tooltip } from "@/components/TempDesignSystem/Tooltip"
import styles from "./chip.module.css"
@@ -20,7 +19,7 @@ export default function FilterChip({
value,
selected,
disabled,
- tooltipText,
+ hasTooltip,
}: FilterChipProps) {
const { register } = useFormContext()
@@ -45,11 +44,11 @@ export default function FilterChip({
{label}
- {tooltipText && (
-
-
-
+
+ {hasTooltip && (
+
)}
+