diff options
| author | Kisaragi <48310258+KisaragiEffective@users.noreply.github.com> | 2023-03-11 08:51:37 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-11 08:51:37 +0900 |
| commit | 0ac1fc846b01c544c0185e4c33012b95463452b6 (patch) | |
| tree | ddedfed55deba16c43d3944c28d723912136f97b /packages/backend/src/core/SignupService.ts | |
| parent | enhance(client): 付箋ウィジェットの高さを設定可能に (diff) | |
| download | misskey-0ac1fc846b01c544c0185e4c33012b95463452b6.tar.gz misskey-0ac1fc846b01c544c0185e4c33012b95463452b6.tar.bz2 misskey-0ac1fc846b01c544c0185e4c33012b95463452b6.zip | |
refactor(backend): 必要ないas anyを消去 (#10293)
Diffstat (limited to 'packages/backend/src/core/SignupService.ts')
| -rw-r--r-- | packages/backend/src/core/SignupService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/SignupService.ts b/packages/backend/src/core/SignupService.ts index 90a7186909..d7bc05b8bd 100644 --- a/packages/backend/src/core/SignupService.ts +++ b/packages/backend/src/core/SignupService.ts @@ -90,7 +90,7 @@ export class SignupService { cipher: undefined, passphrase: undefined, }, - } as any, (err, publicKey, privateKey) => + }, (err, publicKey, privateKey) => err ? rej(err) : res([publicKey, privateKey]), )); |