Skip to content

Commit

Permalink
wip: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewvolk committed Jan 30, 2024
1 parent 5ea0bf6 commit 39fd2d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/reactant/src/components/Calendar/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import * as React from 'react';
import { DayPicker } from 'react-day-picker';

import { cn } from '~/lib/utils';

import { buttonVariants } from '../Button';

export type CalendarProps = React.ComponentProps<typeof DayPicker>;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ElementRef, forwardRef } from 'react';

import { cn } from '~/lib/utils';

import { Input, InputProps } from '../Input';

export const FileChooser = forwardRef<ElementRef<'input'>, InputProps>(
Expand Down
1 change: 1 addition & 0 deletions packages/reactant/src/components/Form/Form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as FormPrimitive from '@radix-ui/react-form';
import { ComponentPropsWithRef, ElementRef, forwardRef } from 'react';

import { cn } from '~/lib/utils';

import { Label } from '../Label';

type ValidationPattern =
Expand Down

0 comments on commit 39fd2d4

Please sign in to comment.