Skip to content

Commit

Permalink
Story #12110 Prettier: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
marob committed Jan 29, 2024
1 parent e6096a4 commit 016764a
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ export class AuthenticationModule {
private static loading: Promise<any> = null;

private static loadModule() {
// tslint:disable-next-line: whitespace semicolon
return () => this.loading;
// Do NOT inline the variable.
const result = () => this.loading;
return result;
}

constructor(
Expand Down

0 comments on commit 016764a

Please sign in to comment.