Fixed imports & lint errors

This commit is contained in:
Alois 2026-03-29 13:29:34 +02:00
commit 9778e7dc71
2 changed files with 3 additions and 1 deletions

View file

@ -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);

View file

@ -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