From b45cfcaa18ddf4541931c84d7d944e7d338f73bc Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 10 Sep 2024 02:19:33 +0200 Subject: [PATCH] Remove obsolete log --- src/Logic/UIEventSource.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Logic/UIEventSource.ts b/src/Logic/UIEventSource.ts index 6e481629f..15a27da2c 100644 --- a/src/Logic/UIEventSource.ts +++ b/src/Logic/UIEventSource.ts @@ -790,10 +790,7 @@ export class UIEventSource extends Store implements Writable { } }, [], - (b) => { - console.log("Stringifying", b) - return JSON.stringify(b) ?? "" - } + (b) => JSON.stringify(b) ?? "" ) }