Skip to content

Commit fd85c20

Browse files
committed
2 parents 17e2006 + d402b83 commit fd85c20

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/components/common/chats/ChatBox.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface Params {
55
onClose?: (close: boolean) => void
66
}
77

8-
const ChatBox = ({ isOpen, onClose }: Params) => {
8+
const ChatBox = ({ isOpen }: Params) => {
99
return (
1010
<motion.div
1111
className={`w-[400px] max-w-full h-[480px] max-h-full bg-primary/20 end-0 rounded-[24px] p-4 shadow-xl backdrop-filter backdrop-blur-lg`}
@@ -25,9 +25,8 @@ const ChatBox = ({ isOpen, onClose }: Params) => {
2525
}}
2626
>
2727
<div className="w-full h-full flex justify-center items-center text-light/60 font-semibold">
28-
Bot Chat Coming Soon...!
28+
Chat Bot Coming Soon...!
2929
</div>
30-
{/* </div> */}
3130
</motion.div>
3231
)
3332
}

0 commit comments

Comments
 (0)