From f0e544289814fca7fe97ca6635a32eaa9943eebe Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 27 Feb 2022 22:10:42 -0600 Subject: [PATCH] Ignore the error about using let instead of const :eye_roll: It's most likely to change once the creator starts working on it --- src/data/mod.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/mod.tsx b/src/data/mod.tsx index fa6f4e6..dbaecec 100644 --- a/src/data/mod.tsx +++ b/src/data/mod.tsx @@ -17,6 +17,7 @@ export const main = createLayer(() => { const total = trackTotal(points); const pointGain = computed(() => { + // eslint-disable-next-line prefer-const let gain = new Decimal(1); return gain; });