@@ -30,27 +30,27 @@ export const SecretKeyInputComponent: React.FC<
30
30
SecretKeyInputComponentProps
31
31
> = ( { languageCode, dictionary } ) => {
32
32
const handleSymmetricSecretKeyChange$ = useDecoderStore (
33
- ( state ) => state . handleSymmetricSecretKeyChange
33
+ ( state ) => state . handleSymmetricSecretKeyChange ,
34
34
) ;
35
35
const handleAsymmetricPublicKeyChange$ = useDecoderStore (
36
- ( state ) => state . handleAsymmetricPublicKeyChange
36
+ ( state ) => state . handleAsymmetricPublicKeyChange ,
37
37
) ;
38
38
const resetControlledSymmetricSecretKey$ = useDecoderStore (
39
- ( state ) => state . resetControlledSymmetricSecretKey
39
+ ( state ) => state . resetControlledSymmetricSecretKey ,
40
40
) ;
41
41
const resetControlledAsymmetricPublicKey$ = useDecoderStore (
42
- ( state ) => state . resetControlledAsymmetricPublicKey
42
+ ( state ) => state . resetControlledAsymmetricPublicKey ,
43
43
) ;
44
44
45
45
const alg$ = useDecoderStore ( ( state ) => state . alg ) ;
46
46
const verificationInputErrors$ = useDecoderStore (
47
- ( state ) => state . verificationInputErrors
47
+ ( state ) => state . verificationInputErrors ,
48
48
) ;
49
49
const controlledSymmetricSecretKey = useDecoderStore (
50
- ( state ) => state . controlledSymmetricSecretKey
50
+ ( state ) => state . controlledSymmetricSecretKey ,
51
51
) ;
52
52
const controlledAsymmetricPublicKey = useDecoderStore (
53
- ( state ) => state . controlledAsymmetricPublicKey
53
+ ( state ) => state . controlledAsymmetricPublicKey ,
54
54
) ;
55
55
56
56
const decoderInputs$ = useDebuggerStore ( ( state ) => state . decoderInputs$ ) ;
@@ -88,7 +88,7 @@ export const SecretKeyInputComponent: React.FC<
88
88
} ;
89
89
90
90
const handleSymmetricSecretKeyChange = async (
91
- e : ChangeEvent < HTMLTextAreaElement >
91
+ e : ChangeEvent < HTMLTextAreaElement > ,
92
92
) => {
93
93
const key = e . target . value ;
94
94
@@ -100,7 +100,7 @@ export const SecretKeyInputComponent: React.FC<
100
100
} ;
101
101
102
102
const handleAsymmetricPublicKeyChange = async (
103
- e : ChangeEvent < HTMLTextAreaElement >
103
+ e : ChangeEvent < HTMLTextAreaElement > ,
104
104
) => {
105
105
const key = e . target . value ;
106
106
0 commit comments