From d18baa418e9dc0b1411edf414884d0dce2aed7ef Mon Sep 17 00:00:00 2001 From: subtle-byte Date: Fri, 21 May 2021 03:52:25 +0300 Subject: [PATCH] Linting the project --- src/runtime/store/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/store/index.ts b/src/runtime/store/index.ts index f4816a98c0..a6c31299e8 100644 --- a/src/runtime/store/index.ts +++ b/src/runtime/store/index.ts @@ -217,11 +217,11 @@ export function derived(stores: Stores, fn: Function, initial_value?: T): Rea } }, () => { - pending &= ~(1 << i) + pending &= ~(1 << i); if (!pending) { revalidate(); } - }, + } )); inited = true;