Fix Bx button in Guide menu not working

This commit is contained in:
redphx
2024-12-12 06:46:41 +07:00
parent cb66340177
commit 4e736175b4
2 changed files with 2 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ export class BxEventBus<TEvents extends Record<string, any>> {
BX_FLAGS.Debug && BxLogger.warning('EventBus', 'on', event, callback);
}
once<K extends keyof TEvents>(event: string, callback: EventCallback<TEvents[K]>): void {
once<K extends keyof TEvents>(event: K, callback: EventCallback<TEvents[K]>): void {
const wrapper = (...args: any[]) => {
// @ts-ignore
callback(...args);