feat: update video conference component height for improved layout
All checks were successful
GBCI / build (push) Successful in 2m24s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-04-27 20:01:28 -03:00
parent e3581147bc
commit 57dd607037

View file

@ -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<Array<{ sender: string, text: string, isBot: boolean }>>([])
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<any>(null)
@ -185,7 +185,7 @@ export default function MeetRoomPage() {
</div>
{/* Chat/Transcript Area - Improved readability and interaction */}
<div className="w-80 border-l flex flex-col bg-white shadow-lg hidden">
<div className="w-80 border-l flex-col bg-white shadow-lg hidden">
<ScrollArea className="flex-1 p-4 space-y-3">
{messages.map((msg, i) => (
<div