diff --git a/src/components/ThemeButton.tsx b/src/components/ThemeButton.tsx index 15c5a14d..6f2888bd 100644 --- a/src/components/ThemeButton.tsx +++ b/src/components/ThemeButton.tsx @@ -7,7 +7,6 @@ type ButtonProps = Omit & { label?: string | React.ReactNode; color?: 'primary' | 'secondary' | 'tertiary'; isSelected?: boolean; - ariaCurrent?: boolean; }; type Ref = HTMLButtonElement; @@ -94,18 +93,17 @@ const ThemeButton = forwardRef(function ThemeButton( ? `cursor-not-allowed ${removedTransitionStyles}` : ''; const iconStyles = 'w-5 h-5 text-xl'; - const ariaCurrent = isSelected ? { 'aria-current': 'true' } : {}; return ( {startContent}