From 493fbcac1510a10f9677335718d2ea32c99d3b82 Mon Sep 17 00:00:00 2001
From: Piotr Roslaniec
Date: Fri, 24 Nov 2023 10:38:32 +0100
Subject: [PATCH] chore(linter): fix linter
---
examples/taco/nodejs/src/index.ts | 1 +
packages/taco/src/conditions/context/context.ts | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/examples/taco/nodejs/src/index.ts b/examples/taco/nodejs/src/index.ts
index 0d624c7b7..e9595823d 100644
--- a/examples/taco/nodejs/src/index.ts
+++ b/examples/taco/nodejs/src/index.ts
@@ -78,6 +78,7 @@ const decryptFromBytes = async (encryptedBytes: Uint8Array) => {
"\nConsumer signer's address:",
await consumerSigner.getAddress(),
);
+
const messageKit = ThresholdMessageKit.fromBytes(encryptedBytes);
console.log('Decrypting message ...');
return decrypt(
diff --git a/packages/taco/src/conditions/context/context.ts b/packages/taco/src/conditions/context/context.ts
index f4ea81103..7b528f70e 100644
--- a/packages/taco/src/conditions/context/context.ts
+++ b/packages/taco/src/conditions/context/context.ts
@@ -1,4 +1,4 @@
-import { Conditions as WASMConditions, Context } from '@nucypher/nucypher-core';
+import { Context, Conditions as WASMConditions } from '@nucypher/nucypher-core';
import { fromJSON, toJSON } from '@nucypher/shared';
import { ethers } from 'ethers';