️(frontend) import LiveKit styles only in the room route

LiveKit styles are not needed across the whole app, only in the room
route. Import them locally there to avoid loading them globally.
This commit is contained in:
lebaudantoine
2026-05-26 09:44:45 +02:00
committed by aleb_the_flash
parent ac520d8b34
commit 426e6258a8
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -1,4 +1,3 @@
import '@livekit/components-styles'
import '@/styles/index.css'
import { Suspense } from 'react'
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
@@ -1,3 +1,4 @@
import '@livekit/components-styles'
import { ReactNode, useEffect, useState } from 'react'
import { useLocation, useParams } from 'wouter'
import { ErrorScreen } from '@/components/ErrorScreen'