Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: operator fix
  • Loading branch information
georgewrmarshall committed Oct 22, 2025
commit 0784cbebc2dcdd2b1be8ba2b897877eea936f2f9
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { ButtonHeroProps } from './ButtonHero.types';

export const ButtonHero = forwardRef<HTMLButtonElement, ButtonHeroProps>(
({ className, isDisabled, isLoading, ...props }, ref) => {
const isInteractive = !(isDisabled ?? isLoading);
const isInteractive = !(isDisabled || isLoading);

const mergedClassName = twMerge(
// Base hero styles - locked to light theme primary colors
Expand Down
Loading