From 312348bc7c2921be6b6e95f396d716f14693d3a1 Mon Sep 17 00:00:00 2001 From: CalDescent <> Date: Fri, 25 Feb 2022 12:21:06 +0000 Subject: [PATCH] Fixed bug in watch.js --- qortal-ui-core/tooling/watch.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qortal-ui-core/tooling/watch.js b/qortal-ui-core/tooling/watch.js index ab65e41e..5f2829cd 100644 --- a/qortal-ui-core/tooling/watch.js +++ b/qortal-ui-core/tooling/watch.js @@ -14,7 +14,7 @@ async function watch(options, outputs, outputOptions, inputOptions) { } } const watcher = rollup.watch(watchOptions) - watcher.on('event', event => {. + watcher.on('event', event => { }) }