mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 15:08:46 +00:00
공개 키 등록 구현
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
import { Button, TextButton } from "$lib/components/buttons";
|
||||
import { BottomDiv } from "$lib/components/divs";
|
||||
import BeforeContinueModal from "./BeforeContinueModal.svelte";
|
||||
import { requestPubKeyRegistration } from "./service";
|
||||
|
||||
import IconKey from "~icons/material-symbols/key";
|
||||
|
||||
@@ -15,9 +16,15 @@
|
||||
console.log(data.privKeyBase64);
|
||||
};
|
||||
|
||||
const continueWithoutExport = () => {
|
||||
const continueWithoutExport = async () => {
|
||||
isBeforeContinueModalOpen = false;
|
||||
|
||||
const ok = await requestPubKeyRegistration(data.pubKeyBase64);
|
||||
if (!ok) {
|
||||
// TODO
|
||||
return;
|
||||
}
|
||||
|
||||
// TODO
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user