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