'use client'; import { ContactRow } from '../shared/contact-row'; import { type OrderComponentProps } from './types'; import { useOrderQuery } from '@/hooks/api/orders'; export function OrderContacts({ documentId }: Readonly) { const { data: { order } = {} } = useOrderQuery({ documentId }); if (!order) return null; return (

Участники

{order.slot?.master && ( )} {order.client && ( )}
); }