Fixed imports & lint errors
This commit is contained in:
parent
0cd703da54
commit
9778e7dc71
2 changed files with 3 additions and 1 deletions
|
|
@ -14,6 +14,8 @@ export default function Provider(props: { children: React.ReactNode }) {
|
|||
const [callId, setCallId] = useState<string | null>(null);
|
||||
const [callSecret, setCallSecret] = useState<string | null>(null);
|
||||
|
||||
console.log(callId, callSecret);
|
||||
|
||||
function connect(callId: string, callSecret: string) {
|
||||
setState("connecting");
|
||||
setCallId(callId);
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue