From 52eac4b7f5988ce02f5edb8799e63e093f6a8f34 Mon Sep 17 00:00:00 2001 From: Tessa Kelly Date: Thu, 2 Dec 2021 10:36:12 -0800 Subject: [PATCH] :skull: remove unused bool from internal radio button config --- src/Nri/Ui/RadioButton/V3.elm | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Nri/Ui/RadioButton/V3.elm b/src/Nri/Ui/RadioButton/V3.elm index dfd9edf4..dcbb0757 100644 --- a/src/Nri/Ui/RadioButton/V3.elm +++ b/src/Nri/Ui/RadioButton/V3.elm @@ -213,7 +213,6 @@ type alias Config value msg = , isDisabled : Bool , guidance : Guidance , error : ErrorState - , showPennant : Bool , hideLabel : Bool , containerCss : List Css.Style , custom : List (Html.Attribute Never) @@ -232,7 +231,6 @@ emptyConfig = , isDisabled = False , guidance = InputErrorAndGuidanceInternal.noGuidance , error = InputErrorAndGuidanceInternal.noError - , showPennant = False , hideLabel = False , containerCss = [] , custom = [] @@ -313,7 +311,6 @@ view { label, name, value, valueToString, selectedValue } attributes = in Html.span [ Attributes.id (idValue ++ "-container") - , classList [ ( "Nri-RadioButton-PremiumClass", config.showPennant ) ] , css [ position relative , marginLeft (px -4)