Skip to content

Commit

Permalink
Fix type on action button
Browse files Browse the repository at this point in the history
  • Loading branch information
mosch authored Nov 21, 2024
1 parent d9c46cc commit 6dc245f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/zudoku/src/lib/ui/ActionButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { cn } from "../util/cn.js";

type ActionButtonProps = ButtonProps & { isPending?: boolean };

export const ActionButton = forwardRef<HTMLButtonElement, ButtonProps>(
export const ActionButton = forwardRef<HTMLButtonElement, ActionButtonProps>(
({ isPending, children, className, ...props }: ActionButtonProps, ref) => {
return (
<Button
Expand Down

0 comments on commit 6dc245f

Please sign in to comment.