TorbatYar/frontend/hooks/useTenantId.ts
Mortezakoohjani cdb69b014b Avoid tenant loading flash when me session is already cached.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-26 18:31:47 +03:30

15 lines
366 B
TypeScript

"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,
};
}