refactor: event manager (#25565)

This commit is contained in:
Jason Rasmussen
2026-01-29 08:52:18 -05:00
committed by GitHub
parent 8db61d341f
commit 10b53b525d
21 changed files with 84 additions and 68 deletions
+3 -1
View File
@@ -19,7 +19,9 @@ export class QueueManager {
}
constructor() {
eventManager.on('QueueUpdate', () => this.refresh());
eventManager.on({
QueueUpdate: () => this.refresh(),
});
}
listen() {