File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/features/decoder/components/encoding-format-toggle-swith Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { getPickersUiDictionary } from "@/features/localization/services/ui-lang
66import { Switch } from "react-aria-components" ;
77import clsx from "clsx" ;
88import { useEncoderStore } from "@/features/encoder/services/encoder.store" ;
9+ import { dataTestidDictionary } from "@/libs/testing/data-testid.dictionary" ;
910
1011interface EncodingFormatToggleSwitchComponentProps {
1112 languageCode : string ;
@@ -45,7 +46,10 @@ export const EncodingFormatToggleSwitchComponent: React.FC<
4546 < div className = { styles . label } >
4647 < span className = { styles . fullLabel } > Base64URL Encoded?</ span >
4748 </ div >
48- < label className = { styles . switch__container } >
49+ < label
50+ className = { styles . switch__container }
51+ data-testid = { dataTestidDictionary . encoder . switch }
52+ >
4953 < input
5054 type = "checkbox"
5155 role = "switch"
You can’t perform that action at this time.
0 commit comments