Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
devceline committed Oct 12, 2023
1 parent 033298f commit e3d3641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/identity-keys/src/identity-keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class IdentityKeys implements IIdentityKeys {
throw new Error(`Failed to unregister on keyserver ${response.status}`);
}

await this.identityKeys.delete(account, { code: -1, message: "Account unregistered" })
await this.identityKeys.delete(account, { code: -1, message: "Account unregistered" });
} catch (error) {
this.core.logger.error(error);
throw error;
Expand Down

0 comments on commit e3d3641

Please sign in to comment.