Skip to content

Commit

Permalink
tailwind: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusmarminge committed Sep 11, 2023
1 parent 1907957 commit 5e45d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/template/extras/src/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const Button = React.forwardRef<
"inline-flex w-full items-center justify-center rounded-md bg-primary p-2 text-sm font-medium text-primary-foreground ring-offset-background transition-colors hover:bg-primary/90 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
className
)}
disabled={props.disabled || pending}
disabled={props.disabled ?? pending}
ref={ref}
{...props}
>
Expand Down

0 comments on commit 5e45d86

Please sign in to comment.