We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 17e2006 + d402b83 commit fd85c20Copy full SHA for fd85c20
src/components/common/chats/ChatBox.tsx
@@ -5,7 +5,7 @@ interface Params {
5
onClose?: (close: boolean) => void
6
}
7
8
-const ChatBox = ({ isOpen, onClose }: Params) => {
+const ChatBox = ({ isOpen }: Params) => {
9
return (
10
<motion.div
11
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) => {
25
}}
26
>
27
<div className="w-full h-full flex justify-center items-center text-light/60 font-semibold">
28
- Bot Chat Coming Soon...!
+ Chat Bot Coming Soon...!
29
</div>
30
- {/* </div> */}
31
</motion.div>
32
)
33
0 commit comments