feat: update video conference component height for improved layout
All checks were successful
GBCI / build (push) Successful in 2m24s
All checks were successful
GBCI / build (push) Successful in 2m24s
This commit is contained in:
parent
e3581147bc
commit
57dd607037
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue