fix build

This commit is contained in:
vchikalkin 2025-08-20 17:47:47 +03:00
parent 3f7d1526da
commit c52e991e3f
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ export function TextareaField({
id={id}
onChange={handleChange}
readOnly={readOnly}
ref={textareaRef}
ref={textareaRef as React.Ref<HTMLTextAreaElement>}
rows={rows}
value={value}
/>

View File

@ -8,7 +8,7 @@ import { getMinutes } from '@repo/utils/datetime-format';
import { formatMoney } from '@repo/utils/money';
import { useState } from 'react';
type ServiceCardProps = ServiceFieldsFragment;
type ServiceCardProps = Omit<ServiceFieldsFragment, 'documentId'>;
export function ServiceCard({
active,