Skip to content

Commit

Permalink
Fix method name in README.md (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
GytisCepk authored Oct 29, 2024
1 parent 181937a commit 025ad5b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Fix method name in README.md",
"packageName": "@itwin/browser-authorization",
"email": "[email protected]",
"dependentChangeType": "patch"
}
2 changes: 1 addition & 1 deletion packages/browser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ await client.signInRedirect();
Instead of a redirect, you may want to trigger a pop up to handle the sign in process:

```typescript
await client.signinPopup();
await client.signInPopup();
```

After the user signs in, they will be redirected to the redirect url specified in your oidc configuration (developer.bentley.com)
Expand Down
2 changes: 1 addition & 1 deletion packages/browser/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ await client.signInRedirect();
Instead of a redirect, you may want to trigger a pop up to handle the sign in process:
```typescript
await client.signinPopup();
await client.signInPopup();
```
After the user signs in, they will be redirected to the redirect url specified in your oidc configuration (developer.bentley.com)
Expand Down

0 comments on commit 025ad5b

Please sign in to comment.