공개 키 등록시 인증 절차 추가

This commit is contained in:
static
2024-12-29 00:32:24 +09:00
parent 928cb799d3
commit 75ab5f5859
11 changed files with 183 additions and 22 deletions

View File

@@ -38,11 +38,11 @@
isBeforeContinueModalOpen = false;
isBeforeContinueBottomSheetOpen = false;
if (await requestPubKeyRegistration(data.pubKeyBase64)) {
if (await requestPubKeyRegistration(data.pubKeyBase64, $keyPairStore.privateKey)) {
await storeKeyPairPersistently($keyPairStore);
await goto(data.redirectPath);
} else {
// TODO
// TODO: Error handling
}
};
</script>