"use client"; import { cn } from "@/lib/utils"; import { usePanelStore } from "@/lib/stores/panel-store"; import { ObjectDetail } from "./object-detail"; import { AIChatPanel } from "@/components/ai"; export function RightPanel() { const isOpen = usePanelStore((s) => s.isOpen); const content = usePanelStore((s) => s.content); return (