Ignore the error about using let instead of const :eye_roll:

It's most likely to change once the creator starts working on it
This commit is contained in:
thepaperpilot 2022-02-27 22:10:42 -06:00
parent 6f577220d4
commit f0e5442898

View file

@ -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;
});