Skip to content

Commit 6b524e3

Browse files
Chilllngithub-actions[bot]
authored andcommitted
chore: auto-fix linting and formatting issues
1 parent cb1d17d commit 6b524e3

31 files changed

+1197
-193
lines changed

bun.lock

Lines changed: 998 additions & 0 deletions
Large diffs are not rendered by default.

src/components/ui/alert-dialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { buttonVariants } from "@/components/ui/button"
22
import { cn } from "@/lib/utils"
33
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog"
4-
import { forwardRef, ComponentRef, ComponentPropsWithoutRef, HTMLAttributes } from "react"
4+
import { ComponentPropsWithoutRef, ComponentRef, HTMLAttributes, forwardRef } from "react"
55

66
const AlertDialog = AlertDialogPrimitive.Root
77

src/components/ui/avatar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { cn } from "@/lib/utils"
22
import * as AvatarPrimitive from "@radix-ui/react-avatar"
3-
import { forwardRef, ComponentRef, ComponentPropsWithoutRef } from "react"
3+
import { ComponentPropsWithoutRef, ComponentRef, forwardRef } from "react"
44

55
const Avatar = forwardRef<
66
ComponentRef<typeof AvatarPrimitive.Root>,

src/components/ui/breadcrumb.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { cn } from "@/lib/utils"
22
import { Slot } from "@radix-ui/react-slot"
33
import { ChevronRight, MoreHorizontal } from "lucide-react"
4-
import { forwardRef, ComponentPropsWithoutRef, ReactNode, ComponentProps } from "react"
4+
import { ComponentProps, ComponentPropsWithoutRef, ReactNode, forwardRef } from "react"
55

66
const Breadcrumb = forwardRef<
77
HTMLElement,

src/components/ui/button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { cn } from "@/lib/utils"
22
import { Slot } from "@radix-ui/react-slot"
33
import { type VariantProps, cva } from "class-variance-authority"
4-
import { forwardRef, ButtonHTMLAttributes } from "react"
4+
import { ButtonHTMLAttributes, forwardRef } from "react"
55

66
const buttonVariants = cva(
77
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",

src/components/ui/calendar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Button, buttonVariants } from "@/components/ui/button"
22
import { cn } from "@/lib/utils"
33
import { ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon } from "lucide-react"
4-
import { ComponentProps, useRef, useEffect } from "react"
4+
import { ComponentProps, useEffect, useRef } from "react"
55
import { DayButton, DayPicker, getDefaultClassNames } from "react-day-picker"
66

77
function Calendar({

src/components/ui/card.tsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { cn } from "@/lib/utils"
2-
import { forwardRef, HTMLAttributes } from "react"
2+
import { HTMLAttributes, forwardRef } from "react"
33

44
const Card = forwardRef<HTMLDivElement, HTMLAttributes<HTMLDivElement>>(
55
({ className, ...props }, ref) => (
@@ -30,12 +30,11 @@ const CardTitle = forwardRef<HTMLParagraphElement, HTMLAttributes<HTMLHeadingEle
3030
)
3131
CardTitle.displayName = "CardTitle"
3232

33-
const CardDescription = forwardRef<
34-
HTMLParagraphElement,
35-
HTMLAttributes<HTMLParagraphElement>
36-
>(({ className, ...props }, ref) => (
37-
<p ref={ref} className={cn("text-sm text-muted-foreground", className)} {...props} />
38-
))
33+
const CardDescription = forwardRef<HTMLParagraphElement, HTMLAttributes<HTMLParagraphElement>>(
34+
({ className, ...props }, ref) => (
35+
<p ref={ref} className={cn("text-sm text-muted-foreground", className)} {...props} />
36+
),
37+
)
3938
CardDescription.displayName = "CardDescription"
4039

4140
const CardContent = forwardRef<HTMLDivElement, HTMLAttributes<HTMLDivElement>>(

src/components/ui/checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { cn } from "@/lib/utils"
22
import * as CheckboxPrimitive from "@radix-ui/react-checkbox"
33
import { Check } from "lucide-react"
4-
import { forwardRef, ComponentRef, ComponentPropsWithoutRef } from "react"
4+
import { ComponentPropsWithoutRef, ComponentRef, forwardRef } from "react"
55

66
const Checkbox = forwardRef<
77
ComponentRef<typeof CheckboxPrimitive.Root>,

src/components/ui/combobox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"
1313
import { cn } from "@/lib/utils"
1414
import { Check, ChevronDown } from "lucide-react"
15-
import { forwardRef, ButtonHTMLAttributes, useState } from "react"
15+
import { ButtonHTMLAttributes, forwardRef, useState } from "react"
1616

1717
interface ComboboxProps extends ButtonHTMLAttributes<HTMLButtonElement> {
1818
options: {

src/components/ui/command.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { cn } from "@/lib/utils"
33
import { type DialogProps } from "@radix-ui/react-dialog"
44
import { Command as CommandPrimitive } from "cmdk"
55
import { Search } from "lucide-react"
6-
import { forwardRef, ComponentRef, ComponentPropsWithoutRef, HTMLAttributes } from "react"
6+
import { ComponentPropsWithoutRef, ComponentRef, HTMLAttributes, forwardRef } from "react"
77

88
const Command = forwardRef<
99
ComponentRef<typeof CommandPrimitive>,

0 commit comments

Comments
 (0)