Skip to content

Commit

Permalink
fix: correct typo in the custom provider guide (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
hampuslavin authored Apr 15, 2024
1 parent 0c5d066 commit a612747
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ var serverResponse = await caller.myAuthentication.login(username, password);
if (serverResponse.success) {
// Store the user info in the session manager.
AuthenticationResponse sessionManager = await SessionManager.instance;
SessionManager sessionManager = await SessionManager.instance;
await sessionManager.registerSignedInUser(
serverResponse.userInfo!,
serverResponse.keyId!,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ var serverResponse = await caller.myAuthentication.login(username, password);
if (serverResponse.success) {
// Store the user info in the session manager.
AuthenticationResponse sessionManager = await SessionManager.instance;
SessionManager sessionManager = await SessionManager.instance;
await sessionManager.registerSignedInUser(
serverResponse.userInfo!,
serverResponse.keyId!,
Expand Down

0 comments on commit a612747

Please sign in to comment.