텍스트 수정

This commit is contained in:
static
2024-12-28 22:51:24 +09:00
parent 52a61297c5
commit 928cb799d3
3 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@
<p class="break-keep text-xl font-bold">암호 키 파일을 저장하셨나요?</p>
<p class="break-keep">
보안상의 이유로 지금 시점 이후로는 암호 키를 파일로 내보낼 수 없어요. 파일이 저장되었는지
다시 확인해 주세요.
다시 한 번 확인해 주세요.
</p>
</div>
<BottomDiv>

View File

@@ -27,7 +27,7 @@
>
아니요
</Button>
<Button onclick={onContinueClick}>계속합니다</Button>
<Button onclick={onContinueClick}>계속할게요</Button>
</div>
</div>
</Modal>

View File

@@ -8,8 +8,8 @@ export const createBlobFromKeyPairBase64 = (pubKeyBase64: string, privKeyBase64:
throw new Error("Failed to format key pair");
}
const pubKeyPem = `-----BEGIN PUBLIC KEY-----\n${pubKeyFormatted}\n-----END PUBLIC KEY-----`;
const privKeyPem = `-----BEGIN PRIVATE KEY-----\n${privKeyFormatted}\n-----END PRIVATE KEY-----`;
const pubKeyPem = `-----BEGIN RSA PUBLIC KEY-----\n${pubKeyFormatted}\n-----END RSA PUBLIC KEY-----`;
const privKeyPem = `-----BEGIN RSA PRIVATE KEY-----\n${privKeyFormatted}\n-----END RSA PRIVATE KEY-----`;
return new Blob([`${pubKeyPem}\n${privKeyPem}\n`], { type: "text/plain" });
};