From 77a0d6c9457624a988c07eb8f4400489460b5199 Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Sun, 5 Apr 2026 20:37:21 +0200 Subject: [PATCH] chore(ui): fix import error --- apps/web/src/components/app/StreamPlayer/StreamPlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/app/StreamPlayer/StreamPlayer.tsx b/apps/web/src/components/app/StreamPlayer/StreamPlayer.tsx index f0cb7c7..4691eef 100644 --- a/apps/web/src/components/app/StreamPlayer/StreamPlayer.tsx +++ b/apps/web/src/components/app/StreamPlayer/StreamPlayer.tsx @@ -18,7 +18,7 @@ import { Button } from '@/components/ui/button'; import { useSession } from '@/lib/providers/SessionProvider'; import { useUserStreamInfo } from '@/lib/hooks/useUserList'; import { getMediamtxClientEnvs } from '@/lib/utils/mediamtx/client'; -import type { MediaMTXRegion } from '@/lib/utils/mediamtx/client'; +import type { MediaMTXRegion } from '@/lib/utils/mediamtx/regions'; const WAITING_RECOVERY_DELAY_MS = 8000; const RECOVERY_COOLDOWN_MS = 2000;