네이밍 관련 리팩토링

This commit is contained in:
static
2025-01-09 02:59:59 +09:00
parent 122f802b19
commit 66daebe577
4 changed files with 15 additions and 17 deletions

View File

@@ -32,7 +32,7 @@
},
];
const generate = async () => {
const generateKeys = async () => {
// TODO: Loading indicator
const { encryptKey, ...clientKeys } = await generateClientKeys();
@@ -74,6 +74,6 @@
</div>
</TitleDiv>
<BottomDiv>
<Button onclick={generate}> 암호 생성하기</Button>
<Button onclick={generateKeys}> 암호 생성하기</Button>
<TextButton>키를 갖고 있어요</TextButton>
</BottomDiv>