diff --git a/ui/src/components/Button.tsx b/ui/src/components/Button.tsx index 97fcc5f6..b7f09501 100644 --- a/ui/src/components/Button.tsx +++ b/ui/src/components/Button.tsx @@ -175,7 +175,7 @@ type ButtonPropsType = Pick< export const Button = React.forwardRef( ({ type, disabled, onClick, formNoValidate, loading, fetcher, ...props }, ref) => { const classes = cx( - "group outline-hidden", + "group outline-hidden cursor-pointer", props.fullWidth ? "w-full" : "", loading ? "pointer-events-none" : "", );