"use client"; import { useChatStore } from "@/lib/store"; export function PersonSwitcher() { const personId = useChatStore((s) => s.personId); const switchPerson = useChatStore((s) => s.switchPerson); const short = personId.slice(0, 8); return (
{short}
); }