From b83e2d4e2b3c32d92043cb4d816cdfdad8d91758 Mon Sep 17 00:00:00 2001 From: Manish Jethani Date: Sat, 11 Sep 2021 19:03:32 +0530 Subject: [PATCH] Fix ESLint warning in useLists() (#3855) --- platform/nodejs/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/nodejs/index.js b/platform/nodejs/index.js index b6b379995..653790f4b 100644 --- a/platform/nodejs/index.js +++ b/platform/nodejs/index.js @@ -180,7 +180,7 @@ async function useLists(lists, options = {}) { useLists.promise = Promise.all(promises); await useLists.promise; - useLists.promise = null; + useLists.promise = null; // eslint-disable-line require-atomic-updates // Commit changes snfe.freeze();