Skip to content

Commit

Permalink
Fix broken whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpreiss committed Oct 6, 2023
1 parent d01c1ec commit ba230ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/utils/crypto/src/encryption.ts
Original file line number Diff line number Diff line change
Expand Up @@ -313,13 +313,13 @@ export class EncryptedThing<T> extends MaybeEncrypted<T> {
@field({ type: Uint8Array })
_nonce: Uint8Array;

@field({type: AbstractEnvelope})
_envelope: PublicKeyEnvelope | HashedKeyEnvelope
@field({ type: AbstractEnvelope })
_envelope: PublicKeyEnvelope | HashedKeyEnvelope;

constructor(props?: {
encrypted: Uint8Array;
nonce: Uint8Array;
envelope: PublicKeyEnvelope | HashedKeyEnvelope;
envelope: PublicKeyEnvelope | HashedKeyEnvelope;
}) {
super();
if (props) {
Expand Down

0 comments on commit ba230ac

Please sign in to comment.