import { useEffect } from "react"; import { bootstrapOpenIM } from "@/features/im/openim-bootstrap"; export function useOpenIMBootstrap() { useEffect(() => { bootstrapOpenIM().catch((error) => { console.error("OpenIM bootstrap failed", error); }); }, []); }