From e328d4fa24bd016a1851c0332a267e54ad91db90 Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Sun, 12 Mar 2023 11:50:42 -0500 Subject: [PATCH] lint fix --- plugins/plugin-cutonfold/src/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/plugin-cutonfold/src/index.mjs b/plugins/plugin-cutonfold/src/index.mjs index 37aa04e2924..7e01c130ec6 100644 --- a/plugins/plugin-cutonfold/src/index.mjs +++ b/plugins/plugin-cutonfold/src/index.mjs @@ -37,7 +37,7 @@ export const plugin = { prefix: 'cutonfold', ...so, } - if (typeof store.cutlist !== undefined) { + if (typeof store.cutlist !== 'undefined') { store.cutlist.setCutOnFold(so.from, so.to) if (so.grainline) store.cutlist.setGrain(so.from.angle(so.to)) }