diff --git a/app/meet/page.tsx b/app/meet/page.tsx index 2598143..bf97509 100644 --- a/app/meet/page.tsx +++ b/app/meet/page.tsx @@ -9,7 +9,7 @@ import { Card } from '@/components/ui/card' import { ScrollArea } from '@/components/ui/scroll-area' import '@livekit/components-styles'; import { Avatar, AvatarFallback } from '@/components/ui/avatar' -import { Mic, MicOff, Video, VideoOff, Send, Bot } from 'lucide-react' +import { Send, Bot } from 'lucide-react' export default function MeetRoomPage() { @@ -22,8 +22,8 @@ export default function MeetRoomPage() { const [isConnected, setIsConnected] = useState(false) const [messages, setMessages] = useState>([]) const [inputMessage, setInputMessage] = useState('') - const [micEnabled, setMicEnabled] = useState(true) - const [cameraEnabled, setCameraEnabled] = useState(true) + const [micEnabled] = useState(true) + const [cameraEnabled] = useState(true) const [botTyping, setBotTyping] = useState(false) const botConnectionRef = useRef(null) @@ -185,7 +185,7 @@ export default function MeetRoomPage() { {/* Chat/Transcript Area - Improved readability and interaction */} -
+
{messages.map((msg, i) => (