diff --git a/apps/web/components/orders/order-services.tsx b/apps/web/components/orders/order-services.tsx index 87bc4f2..ed3eefd 100644 --- a/apps/web/components/orders/order-services.tsx +++ b/apps/web/components/orders/order-services.tsx @@ -3,6 +3,8 @@ import { type OrderComponentProps } from './types'; import { useOrderQuery } from '@/hooks/api/orders'; import { type ServiceFieldsFragment } from '@repo/graphql/types'; +type ServiceCardProps = Pick; + export function OrderServices({ documentId }: Readonly) { const { data: { order } = {} } = useOrderQuery({ documentId }); @@ -18,7 +20,7 @@ export function OrderServices({ documentId }: Readonly) { ); } -function ServiceCard({ name }: Readonly) { +function ServiceCard({ name }: Readonly) { return (
{name}