"use client"; import { useState } from "react"; import { MessageCircle, X } from "lucide-react"; import { AssistantPanel } from "./assistant-panel"; type Props = { configured: boolean; userId: string; assistantName: string; assistantModel: string | null; }; export function AssistantBubble({ configured, userId, assistantName, assistantModel }: Props) { const [open, setOpen] = useState(false); return (
{open ? (
{assistantName}
Household helper
) : null}
); }