From b07b5e2a1cd71010d9e9734b203e6d9a37053b46 Mon Sep 17 00:00:00 2001 From: trevorjtclarke Date: Thu, 24 Feb 2022 11:28:13 -0800 Subject: [PATCH] add beta flag back for triggers --- src/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 3cbee13..ff7acc8 100644 --- a/src/index.js +++ b/src/index.js @@ -11,9 +11,9 @@ export const runSubLoops = async () => { // do the things tasks.run() - + // do the moar thinsg - triggers.run() + if (config.BETA_FEATURES) triggers.run() } export const runMainLoop = async () => {