fix: build
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Kieran 2024-01-09 18:55:42 +00:00
parent 8a5a089b4d
commit 91f0afdb89
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -98,7 +98,7 @@ export class SystemWorker extends EventEmitter<NostrSystemEvents> implements Sys
on: (_: "event", cb) => {
chan.then(c => {
c.port.onmessage = e => {
cb?.(e.data as Array<TaggedNostrEvent>);
//cb(e.data as Array<TaggedNostrEvent>);
};
});
},