Fix private method access in app router

This commit is contained in:
Bill Thornton 2022-04-22 14:30:05 -04:00
parent dbfc1e27b4
commit de0ae288cf

View file

@ -426,7 +426,7 @@ class AppRouter {
} else if (route.roles) {
this.#validateRoles(apiClient, route.roles).then(() => {
callback();
}, this.#beginConnectionWizard);
}, this.#beginConnectionWizard.bind(this));
return;
}
}