From 9778e7dc71d41b49fca2bfdf48b8ec4898351250 Mon Sep 17 00:00:00 2001 From: Alois Date: Sun, 29 Mar 2026 13:29:34 +0200 Subject: [PATCH] Fixed imports & lint errors --- packages/call/src/context.tsx | 2 ++ packages/ui/src/cmp/select.tsx | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/call/src/context.tsx b/packages/call/src/context.tsx index 0f8c3f7..585e44a 100644 --- a/packages/call/src/context.tsx +++ b/packages/call/src/context.tsx @@ -14,6 +14,8 @@ export default function Provider(props: { children: React.ReactNode }) { const [callId, setCallId] = useState(null); const [callSecret, setCallSecret] = useState(null); + console.log(callId, callSecret); + function connect(callId: string, callSecret: string) { setState("connecting"); setCallId(callId); diff --git a/packages/ui/src/cmp/select.tsx b/packages/ui/src/cmp/select.tsx index 10c1601..154f161 100644 --- a/packages/ui/src/cmp/select.tsx +++ b/packages/ui/src/cmp/select.tsx @@ -1,7 +1,7 @@ import * as React from "react" import { Select as SelectPrimitive } from "@base-ui/react/select" -import { cn } from "@/lib/utils" +import { cn } from "../lib/utils" import { ChevronDownIcon, CheckIcon, ChevronUpIcon } from "lucide-react" const Select = SelectPrimitive.Root