From cc63f636e928c9071bbc3208b77aa20d88800a17 Mon Sep 17 00:00:00 2001 From: Johannes Eder Date: Tue, 25 May 2021 12:20:55 +0200 Subject: [PATCH] fix: changed DEBUG_MODE back --- frontend/src/services/util-registry/util-registry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/services/util-registry/util-registry.js b/frontend/src/services/util-registry/util-registry.js index 507331135..65e9326cc 100644 --- a/frontend/src/services/util-registry/util-registry.js +++ b/frontend/src/services/util-registry/util-registry.js @@ -1,6 +1,6 @@ import * as toposort from 'toposort'; -const DEBUG_MODE = 3;///localhost/.test(window.location.href) ? 1 : 0; +const DEBUG_MODE = /localhost/.test(window.location.href) ? 1 : 0; export class UtilRegistry {