fix(date utils fixed)

This commit is contained in:
2025-10-04 02:57:27 +05:30
parent 7920f40eb2
commit 14d2f3d7b8
2 changed files with 30 additions and 8 deletions

View File

@@ -360,7 +360,7 @@ export const PatientForm = forwardRef<PatientFormRef, PatientFormProps>(
<FormItem>
<FormLabel>Insurance ID</FormLabel>
<FormControl>
<Input {...field} value={field.value || ""} />
<Input {...field} value={String(field.value) || ""} />
</FormControl>
<FormMessage />
</FormItem>