Skip to content

Commit

Permalink
Stupid linting
Browse files Browse the repository at this point in the history
  • Loading branch information
andywilkinshmcts committed Sep 19, 2024
1 parent fe0100e commit 87fb5c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth/oauth2/models/XUIOAuth2Strategy.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class XUIOAuth2Strategy extends OAuth2Strategy {
userProfile = async (accessToken: string, done: (err?: Error | null, profile?: any) => void): Promise<void> => {
const userDetails = await getUserDetails(accessToken, this.options.logoutUrl)
if (userDetails?.data) {
this.logger.log('retrieved userProfile', userDetails.data);
this.logger.log('retrieved userProfile', userDetails.data)
done(null, userDetails.data)
} else {
this.logger.error('no user details retrieved')
Expand Down

0 comments on commit 87fb5c2

Please sign in to comment.