diff --git a/ui/app/components/ui/toggle-button/index.scss b/ui/app/components/ui/toggle-button/index.scss index 57bbd4505..e37833c1c 100644 --- a/ui/app/components/ui/toggle-button/index.scss +++ b/ui/app/components/ui/toggle-button/index.scss @@ -33,8 +33,4 @@ visibility: hidden; } } - - &--disabled { - opacity: 0.5; - } } diff --git a/ui/app/components/ui/toggle-button/toggle-button.component.js b/ui/app/components/ui/toggle-button/toggle-button.component.js index 2c935ad90..d16bcfcfc 100644 --- a/ui/app/components/ui/toggle-button/toggle-button.component.js +++ b/ui/app/components/ui/toggle-button/toggle-button.component.js @@ -47,19 +47,15 @@ const colors = { }; const ToggleButton = (props) => { - const { value, onToggle, offLabel, onLabel, disabled } = props; + const { value, onToggle, offLabel, onLabel } = props; const modifier = value ? 'on' : 'off'; return ( -