Skip to content

Commit ff37381

Browse files
committed
format secret key input component
1 parent f4624e3 commit ff37381

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/features/decoder/components/secret-key-input.component.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,27 @@ export const SecretKeyInputComponent: React.FC<
3030
SecretKeyInputComponentProps
3131
> = ({ languageCode, dictionary }) => {
3232
const handleSymmetricSecretKeyChange$ = useDecoderStore(
33-
(state) => state.handleSymmetricSecretKeyChange
33+
(state) => state.handleSymmetricSecretKeyChange,
3434
);
3535
const handleAsymmetricPublicKeyChange$ = useDecoderStore(
36-
(state) => state.handleAsymmetricPublicKeyChange
36+
(state) => state.handleAsymmetricPublicKeyChange,
3737
);
3838
const resetControlledSymmetricSecretKey$ = useDecoderStore(
39-
(state) => state.resetControlledSymmetricSecretKey
39+
(state) => state.resetControlledSymmetricSecretKey,
4040
);
4141
const resetControlledAsymmetricPublicKey$ = useDecoderStore(
42-
(state) => state.resetControlledAsymmetricPublicKey
42+
(state) => state.resetControlledAsymmetricPublicKey,
4343
);
4444

4545
const alg$ = useDecoderStore((state) => state.alg);
4646
const verificationInputErrors$ = useDecoderStore(
47-
(state) => state.verificationInputErrors
47+
(state) => state.verificationInputErrors,
4848
);
4949
const controlledSymmetricSecretKey = useDecoderStore(
50-
(state) => state.controlledSymmetricSecretKey
50+
(state) => state.controlledSymmetricSecretKey,
5151
);
5252
const controlledAsymmetricPublicKey = useDecoderStore(
53-
(state) => state.controlledAsymmetricPublicKey
53+
(state) => state.controlledAsymmetricPublicKey,
5454
);
5555

5656
const decoderInputs$ = useDebuggerStore((state) => state.decoderInputs$);
@@ -88,7 +88,7 @@ export const SecretKeyInputComponent: React.FC<
8888
};
8989

9090
const handleSymmetricSecretKeyChange = async (
91-
e: ChangeEvent<HTMLTextAreaElement>
91+
e: ChangeEvent<HTMLTextAreaElement>,
9292
) => {
9393
const key = e.target.value;
9494

@@ -100,7 +100,7 @@ export const SecretKeyInputComponent: React.FC<
100100
};
101101

102102
const handleAsymmetricPublicKeyChange = async (
103-
e: ChangeEvent<HTMLTextAreaElement>
103+
e: ChangeEvent<HTMLTextAreaElement>,
104104
) => {
105105
const key = e.target.value;
106106

0 commit comments

Comments
 (0)