Remove obsolete log

This commit is contained in:
Pieter Vander Vennet 2024-09-10 02:19:33 +02:00
parent 993a950458
commit b45cfcaa18

View file

@ -790,10 +790,7 @@ export class UIEventSource<T> extends Store<T> implements Writable<T> {
}
},
[],
(b) => {
console.log("Stringifying", b)
return JSON.stringify(b) ?? ""
}
(b) => JSON.stringify(b) ?? ""
)
}