chore(website): fix CI failed

This commit is contained in:
JiPai
2024-09-07 17:05:14 +08:00
parent 189c2b768d
commit 6e6df2c771
7 changed files with 750 additions and 1014 deletions

View File

@@ -46,7 +46,6 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
({ className, variant, size, asChild = false, ...props }, ref) => {
const Comp = asChild ? Slot : "button";
return (
// @ts-expect-error
<Comp
className={cn(buttonVariants({ variant, size, className }))}
ref={ref}