Skip to content

Commit

Permalink
Run lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arkadiuszbachorski committed Aug 19, 2024
1 parent e12878f commit fb3f01e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions app/(dashboard)/patients/[id]/LabForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
// SPDX-License-Identifier: MIT
//
'use client'
import { Dialog } from '@radix-ui/react-dialog'

Check warning on line 9 in app/(dashboard)/patients/[id]/LabForm.tsx

View check run for this annotation

Codecov / codecov/patch

app/(dashboard)/patients/[id]/LabForm.tsx#L9

Added line #L9 was not covered by tests
import { type ComponentProps } from 'react'
import { z } from 'zod'
import {

Check warning on line 12 in app/(dashboard)/patients/[id]/LabForm.tsx

View check run for this annotation

Codecov / codecov/patch

app/(dashboard)/patients/[id]/LabForm.tsx#L11-L12

Added lines #L11 - L12 were not covered by tests
getObservationTypeUnits,
Expand All @@ -15,6 +17,11 @@ import { type Observation } from '@/app/(dashboard)/patients/utils'
import { ObservationType } from '@/modules/firebase/utils'
import { Button } from '@/packages/design-system/src/components/Button'
import { DatePicker } from '@/packages/design-system/src/components/DatePicker'
import {

Check warning on line 20 in app/(dashboard)/patients/[id]/LabForm.tsx

View check run for this annotation

Codecov / codecov/patch

app/(dashboard)/patients/[id]/LabForm.tsx#L17-L20

Added lines #L17 - L20 were not covered by tests
DialogContent,
DialogHeader,
DialogTitle,
} from '@/packages/design-system/src/components/Dialog'
import { Input } from '@/packages/design-system/src/components/Input'
import {

Check warning on line 26 in app/(dashboard)/patients/[id]/LabForm.tsx

View check run for this annotation

Codecov / codecov/patch

app/(dashboard)/patients/[id]/LabForm.tsx#L25-L26

Added lines #L25 - L26 were not covered by tests
Select,
Expand All @@ -25,13 +32,6 @@ import {
} from '@/packages/design-system/src/components/Select'
import { Field } from '@/packages/design-system/src/forms/Field'
import { useForm } from '@/packages/design-system/src/forms/useForm'

Check warning on line 34 in app/(dashboard)/patients/[id]/LabForm.tsx

View check run for this annotation

Codecov / codecov/patch

app/(dashboard)/patients/[id]/LabForm.tsx#L33-L34

Added lines #L33 - L34 were not covered by tests
import { ComponentProps } from 'react'
import { Dialog } from '@radix-ui/react-dialog'
import {
DialogContent,
DialogHeader,
DialogTitle,
} from '@/packages/design-system/src/components/Dialog'

export const labFormSchema = z.object({

Check warning on line 36 in app/(dashboard)/patients/[id]/LabForm.tsx

View check run for this annotation

Codecov / codecov/patch

app/(dashboard)/patients/[id]/LabForm.tsx#L36

Added line #L36 was not covered by tests
type: z.nativeEnum(ObservationType),
Expand Down
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ SPDX-License-Identifier: MIT
@apply focus-ring transition-opacity hover:opacity-60;
}

.hide-all-hidden [aria-hidden="true"] {
.hide-all-hidden [aria-hidden='true'] {
display: none;
}
}

0 comments on commit fb3f01e

Please sign in to comment.