Skip to content

Commit 9c44d67

Browse files
committed
Fix lint
1 parent 85d4ead commit 9c44d67

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

packages/server/shared/src/lib/security/encryption.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,7 @@ function decryptBuffer(encryptedObject: EncryptedObject): Buffer {
6666
]);
6767
}
6868

69-
function decryptString(
70-
encryptedObject: EncryptedObject,
71-
): string {
69+
function decryptString(encryptedObject: EncryptedObject): string {
7270
const secret = loadEncryptionKey();
7371
const iv = Buffer.from(encryptedObject.iv, 'hex');
7472
const key = Buffer.from(secret, 'binary');

0 commit comments

Comments
 (0)