Skip to content

Commit

Permalink
fix(authentication): config loading
Browse files Browse the repository at this point in the history
  • Loading branch information
kkopanidis committed Sep 30, 2022
1 parent 1136a0f commit 08525d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/authentication/src/Authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default class Authentication extends ManagedModule<Config> {
async preRegister(): Promise<void> {
const config = await configMigration(this.grpcSdk);
if (config) {
(this.config as unknown) = config;
this.config!.load(config);
this.configOverride = true;
}

Expand Down

0 comments on commit 08525d5

Please sign in to comment.