refactor: 去掉登录的debugger

This commit is contained in:
RubyLiu 2023-08-29 18:55:34 +08:00 committed by 刘瑞斌
parent 6ecb2f37aa
commit 5eb2c77d79
1 changed files with 0 additions and 1 deletions

View File

@ -102,7 +102,6 @@
const encrypted = (input: string, publicKey: string) => {
const encrypt = new JSEncrypt({ default_key_size: '1024' });
debugger;
encrypt.setPublicKey(publicKey);
return encrypt.encrypt(input);
};