변수 네이밍 규칙 관련 리팩토링

This commit is contained in:
static
2025-01-08 21:53:32 +09:00
parent db900d8038
commit 5f6894d953
8 changed files with 14 additions and 14 deletions

View File

@@ -29,11 +29,11 @@ export const requestClientRegistration = async (
const { challenge }: ClientRegisterResponse = await res.json();
const answer = await decryptChallenge(challenge, decryptKey);
const sigAnswer = await signMessage(answer, signKey);
const answerSig = await signMessage(answer, signKey);
res = await callPostApi<ClientRegisterVerifyRequest>("/api/client/register/verify", {
answer: encodeToBase64(answer),
sigAnswer: encodeToBase64(sigAnswer),
answerSig: encodeToBase64(answerSig),
});
return res.ok;
};