"use client"; import { useMe } from "@/hooks/useMe"; /** Tenant ID جاری برای هدر X-Tenant-ID سرویس حسابداری (از کش مشترک useMe). */ export function useTenantId() { const { me, loading, error } = useMe(); return { tenantId: me?.current_tenant_id ?? null, loading: loading && !me, error, me, }; }